        /* Custom Styles for inputs and scrollbar */
        body { font-family: 'Inter', sans-serif; }
        ::-webkit-scrollbar { width: 8px; }
        ::-webkit-scrollbar-track { background: #f1f1f1; }
        ::-webkit-scrollbar-thumb { background: #009cde; border-radius: 4px; }
        ::-webkit-scrollbar-thumb:hover { background: #071d49; }
        
        .form-input {
            width: 100%;
            padding: 0.75rem 1rem;
            border-radius: 0.5rem;
            border: 1px solid #e5e7eb;
            background-color: #f9fafb;
            transition: all 0.3s ease;
        }
        .form-input:focus {
            outline: none;
            border-color: #009cde;
            box-shadow: 0 0 0 3px rgba(0, 156, 222, 0.2);
            background-color: #ffffff;
        }
        
        /* Floating WhatsApp Menu Animation */
        #wa-menu {
            transition: opacity 0.3s ease, transform 0.3s ease;
            transform-origin: bottom right;
        }
        .wa-hidden { opacity: 0; transform: scale(0.9); pointer-events: none; }
        .wa-visible { opacity: 1; transform: scale(1); pointer-events: auto; }

        /* FAQ Accordion Transitions */
        .faq-answer {
            transition: max-height 0.4s ease, padding 0.4s ease, opacity 0.4s ease;
            max-height: 0;
            opacity: 0;
            overflow: hidden;
            padding-top: 0;
            padding-bottom: 0;
        }
        .faq-item.active .faq-answer {
            max-height: 300px;
            opacity: 1;
            padding-top: 1rem;
            padding-bottom: 1rem;
        }
        .faq-icon { transition: transform 0.3s ease; }
        .faq-item.active .faq-icon { transform: rotate(180deg); }
		.text-primary {
    --tw-text-opacity: 1;
    color: rgb(0 101 145 / var(--tw-text-opacity, 1));
}.bg-primary\/10 {
    background-color: rgb(0 101 145 / 0.1);
}
		.bg-primary-container {
    --tw-bg-opacity: 1;
    background-color: rgb(0 156 222 / var(--tw-bg-opacity, 1));
}
.promo-badge {
            display: inline-block;
            background: linear-gradient(90deg, #ff6b6b, #ee5a24);
            color: white;
            padding: 6px 16px;
            border-radius: 50px;
            font-size: 13px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

.g-recaptcha-response {
    display: block !important;
    position: absolute;
    margin: -95px 0px 0 25px !important;
    width: 302px !important;
    height: 76px !important;
    z-index: -999999;
    opacity: 0;
}		

/* VARIABLES DE COLOR */
:root {
    --rojo-urgencia: #ec3233;
    --azul-menu: #044083;
}
/* =========================================
   ESTILOS MOBILE FIRST (Por defecto)
========================================= */


/* Menú Inferior Sticky */
.menu-mobile-sticky {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--azul-menu);
    display: flex;
    justify-content: space-around;
    align-items: flex-end;
    padding: 10px 0 8px 0;
    z-index: 9999;
    box-shadow: 0 -4px 10px rgba(0,0,0,0.15);
    font-family: inherit;
}

.menu-mobile-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #ffffff;
    text-decoration: none;
    font-size: 12px;
    width: 25%;
    transition: opacity 0.3s ease;
}

.menu-mobile-item:hover,
.menu-mobile-item:focus {
    color: #ffffff;
    opacity: 0.8;
    text-decoration: none;
}

.menu-mobile-item i {
    font-size: 22px;
    margin-bottom: 4px;
}

/* Ítem Central Destacado en Mobile */
.item-central-destacado {
    position: relative;
    /* Añadimos un poco de altura base para asegurar que el contenido interno se distribuya bien */
    height: 40px; 
}

.circulo-rojo-urgencia {
    position: absolute;
    bottom: 5px; /* CORRECCIÓN: Valor positivo para que no se corte por debajo de la pantalla */
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--rojo-urgencia);
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 3px solid #ffffff;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    color: #ffffff;
}

.circulo-rojo-urgencia i {
    font-size: 22px;
    margin-bottom: 2px;
}

.circulo-rojo-urgencia span {
    font-size: 10px;
    font-weight: bold;
    text-align: center;
    line-height: 1.1;
}

/* =========================================
   MEDIA QUERIES (Desktop - Desde 768px)
========================================= */
@media (min-width: 768px) {
    /* Ocultar menú mobile en resoluciones mayores */
    .menu-mobile-sticky {
        display: none;
    }
}

@media (max-width: 500px) {
    /* Ocultar menú mobile en resoluciones mayores */
    .trabajo {
        display: block!important;
		width:50%!important;
		border-radius:0px;
		
    }   

 } 