/*
Theme Name: Asesoría San Juan (Odoo Style Child)
Description: Tema hijo para Flatsome optimizado para el estilo visual de Odoo.
Author: UX Themes & Gemini
Template: flatsome
Version: 3.0
*/

/*************** ESTILOS EXCLUSIVOS ESTILO ODOO ***************/

/* 1. Punto verde parpadeante (Asesoría en tiempo real) */
.odoo-pulsing-dot {
    width: 8px;
    height: 8px;
    background-color: #10b981;
    border-radius: 50%;
    display: inline-block;
    vertical-align: middle;
    margin-right: 6px;
    animation: odooPulse 2s infinite;
}
@keyframes odooPulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

