/* --- ESTILOS GENERALES Y GRADIENTES --- */
body {
    background-color: #111827; /* bg-gray-900 */
}

.gradient-text {
    background: linear-gradient(to right, #FBBF24, #F59E0B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}


/* --- ANIMACIÓN AL HACER SCROLL --- */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}


/* --- TARJETAS DE CIUDADES FLOTANTES --- */
.city-card {
    background-color: #1F2937; /* bg-gray-800 */
    padding: 2rem 3rem;
    border-radius: 1rem; /* rounded-2xl */
    border: 1px solid #374151; /* border-gray-700 */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.city-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(251, 191, 36, 0.1);
}


/* --- ACORDEÓN DE PREGUNTAS FRECUENTES (FAQ) --- */
.faq-item {
    background-color: #1F2937; /* bg-gray-800 */
    border-radius: 0.75rem; /* rounded-xl */
    border: 1px solid #374151; /* border-gray-700 */
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.25rem; /* p-5 */
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-weight: 600; /* font-semibold */
    color: #F3F4F6; /* text-gray-100 */
    cursor: pointer;
    background-color: transparent;
    border: none;
}

.faq-question:hover {
    color: #FBBF24; /* text-yellow-400 */
}

.faq-icon {
    width: 1.25rem; /* w-5 */
    height: 1.25rem; /* h-5 */
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out, padding 0.5s ease-in-out;
}

.faq-answer p {
    padding: 0 1.25rem 1.25rem;
    color: #9CA3AF; /* text-gray-400 */
    line-height: 1.6;
}

/* --- ESTADO ACTIVO DEL ACORDEÓN (CONTROLADO POR JS) --- */
.faq-item.active .faq-question {
    color: #FBBF24; /* text-yellow-400 */
}

.faq-item.active .faq-icon {
    transform: rotate(45deg); /* Gira el '+' para formar una 'x' */
}

.faq-item.active .faq-answer {
    max-height: 200px; /* Ajusta si las respuestas son muy largas */
    padding-top: 0;
}

/* ======== NUEVOS ESTILOS PARA LA SECCIÓN DE PASOS ======== */
.step-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 768px) { /* md: */
    .step-layout {
        grid-template-columns: repeat(2, 1fr);
        gap: 4rem;
    }
    .step-layout.step-layout-reverse .step-image-container {
        order: 2;
    }
}

.step-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.step-image-container img {
    max-width: 350px;
    width: 100%;
}


/* ======== NUEVOS ESTILOS PARA LOGOS DE PAQUETERÍAS ======== */
.courier-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: drop-shadow(0 0 0 rgba(0,0,0,0)); /* Sombra inicial transparente */
}

.courier-logo img {
    filter: grayscale(50%); /* Opcional: logos ligeramente grises por defecto */
    transition: filter 0.3s ease;
}

.courier-logo:hover {
    transform: translateY(-8px);
}

.courier-logo:hover img {
    filter: grayscale(0%);
}

.logo-dhl:hover {
    filter: drop-shadow(0 10px 15px rgba(255, 204, 0, 0.3)); /* Sombra Amarilla */
}
.logo-fedex:hover {
    filter: drop-shadow(0 10px 15px rgba(77, 20, 140, 0.4)); /* Sombra Morada */
}
.logo-estafeta:hover {
    filter: drop-shadow(0 10px 15px rgba(192, 24, 24, 0.3)); /* Sombra Roja */
}
.logo-ups:hover {
    filter: drop-shadow(0 10px 15px rgba(53, 28, 21, 0.5)); /* Sombra Café */
}
/* ======== NUEVOS ESTILOS PARA VENTANAS MODALES Y FORMULARIOS ======== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 1rem;
}

.modal-content {
    background-color: #1F2937; /* bg-gray-800 */
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid #374151; /* border-gray-700 */
    width: 100%;
    max-width: 500px;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-content h2 {
    color: #FBBF24; /* text-yellow-400 */
}

.form-input {
    width: 100%;
    background-color: #374151; /* bg-gray-700 */
    border: 1px solid #4B5563; /* border-gray-600 */
    color: white;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-input:focus {
    outline: none;
    border-color: #FBBF24; /* border-yellow-400 */
    box-shadow: 0 0 0 2px rgba(251, 191, 36, 0.4);
}

.form-checkbox {
    margin-right: 0.5rem;
    accent-color: #FBBF24; /* yellow-400 */
}

.form-button {
    width: 100%;
    padding: 0.75rem;
    font-weight: 600;
    color: #111827; /* bg-gray-900 */
    background-color: #FBBF24; /* bg-yellow-400 */
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: background-color 0.2s;
}

.form-button:hover {
    background-color: #F59E0B; /* bg-yellow-500 */
}
/* ======== NUEVOS ESTILOS PARA TARJETAS DE SERVICIOS TECH ======== */
.service-card {
    padding: 2rem;
    border-radius: 1.5rem; /* rounded-3xl for a softer look */
    border: 1px solid #374151; /* border-gray-700 */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.service-card-blue {
    background: radial-gradient(circle, rgba(37, 235, 80, 0.15) 0%, rgba(26, 141, 103, 0.1) 100%);
}

.service-card-red {
    background: radial-gradient(circle, rgba(220, 38, 38, 0.15) 0%, rgba(127, 29, 29, 0.1) 100%);
}

.service-card-green {
    background: radial-gradient(circle, rgba(22, 71, 163, 0.15) 0%, rgba(21, 94, 128, 0.1) 100%);
}

.service-card-purple {
    background: radial-gradient(circle, rgba(147, 51, 234, 0.15) 0%, rgba(107, 33, 168, 0.1) 100%);
}

.service-card-cyan {
    background: radial-gradient(circle, rgba(6, 182, 212, 0.15) 0%, rgba(8, 145, 178, 0.1) 100%);
}
/* ======== NUEVOS ESTILOS PARA TARJETAS DE SERVICIOS DIGITALES ======== */

.service-card-pink {
    background: radial-gradient(circle, rgba(219, 39, 119, 0.15) 0%, rgba(131, 24, 67, 0.1) 100%);
}

.service-card-orange {
    background: radial-gradient(circle, rgba(234, 88, 12, 0.15) 0%, rgba(154, 52, 18, 0.1) 100%);
}

.service-card-teal {
    background: radial-gradient(circle, rgba(13, 148, 136, 0.15) 0%, rgba(15, 118, 110, 0.1) 100%);
}

.service-card-indigo {
    background: radial-gradient(circle, rgba(79, 70, 229, 0.15) 0%, rgba(67, 56, 202, 0.1) 100%);
}

.service-card-lime {
    background: radial-gradient(circle, rgba(163, 230, 53, 0.15) 0%, rgba(101, 163, 13, 0.1) 100%);
}

.service-card-yellow-dark {
    background: radial-gradient(circle, rgba(202, 138, 4, 0.15) 0%, rgba(133, 77, 14, 0.1) 100%);
}
/* --- NUEVOS ESTILOS AÑADIDOS --- */

/* --- Tarjeta para los pasos de "Cómo usar" --- */
.step-card {
    background-color: #1f2937; /* bg-gray-800 */
    border: 1px solid #374151; /* border-gray-600 */
    border-radius: 1.25rem; /* rounded-2xl */
    padding: 2rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover {
    border-color: #9ca3af; /* A lighter gray on hover */
    box-shadow: 0 0 20px rgba(156, 163, 175, 0.15), 0 0 40px rgba(156, 163, 175, 0.1); /* Efecto Neón Gris */
}

/* --- Botones de llamada a la acción (CTA) --- */
.btn-cta-yellow, .btn-cta-cyan {
    transition: all 0.3s ease-in-out;
}

.btn-cta-yellow {
    background-color: #FBBF24; /* yellow-400 */
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.2);
}
.btn-cta-yellow:hover {
    background-color: #FCD34D; /* yellow-300 */
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 25px rgba(252, 211, 77, 0.3);
}

.btn-cta-cyan {
    background-color: #0891b2; /* cyan-600 */
    box-shadow: 0 4px 15px rgba(8, 145, 178, 0.2);
}
.btn-cta-cyan:hover {
    background-color: #06b6d4; /* cyan-500 */
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 25px rgba(6, 182, 212, 0.3);
}

/* --- Íconos de redes sociales en el footer --- */
.social-icon {
    color: #9ca3af; /* text-gray-400 */
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-icon:hover {
    color: #FBBF24; /* text-yellow-400 */
    transform: scale(1.2);
}

.footer-logo-link {
    transition: all 0.3s ease;
}

.footer-logo-link:hover {
    filter: drop-shadow(0 0 10px rgba(251, 191, 36, 0.6)); /* Yellow glow effect */
    transform: scale(1.05);
}
/* ======== NUEVOS ESTILOS PARA TARJETAS DE PLANES DE CONDUCTOR ======== */
.plan-card {
    background-color: #1f2937; /* bg-gray-800 */
    border: 1px solid #374151; /* border-gray-700 */
    border-radius: 1rem;
    padding: 2rem;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.plan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.plan-card ul {
    list-style-position: inside;
}

.plan-card li {
    position: relative;
    padding-left: 1.5rem; /* Space for the icon */
}

.plan-card li::before {
    content: '✔';
    position: absolute;
    left: 0;
    color: #34d399; /* emerald-400 */
}

/* ======== ESTILOS ADICIONALES PARA PÁGINA DE CONDUCTOR ======== */

/* --- Estilo MEJORADO para el logo de la App Conductor --- */
.driver-logo-link {
    transition: transform 0.3s ease, filter 0.3s ease;
}
.driver-logo-link:hover {
    transform: scale(1.10); /* Aumento de tamaño más notable */
    filter: drop-shadow(0 0 25px rgba(251, 191, 36, 0.7)); /* Sombra más intensa */
}

/* --- Estilos para las tarjetas de Planes (si no los has agregado antes) --- */
.plan-card {
    background-color: #1f2937; /* bg-gray-800 */
    border: 1px solid #374151; /* border-gray-700 */
    border-radius: 1rem;
    padding: 2rem;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.plan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.plan-card ul {
    list-style-position: inside;
}

.plan-card li {
    position: relative;
    padding-left: 1.75rem; /* Espacio para el ícono */
}

.plan-card li::before {
    content: '✔';
    position: absolute;
    left: 0;
    top: 2px;
    color: #34d399; /* emerald-400 */
}
/* --- ESTILOS PARA EL HEADER (MENÚ DE NAVEGACIÓN) --- */
header#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 50;
    transition: background-color 0.3s ease-in-out, backdrop-filter 0.3s ease-in-out;
    -webkit-backdrop-filter: blur(0px);
}

/* --- SOLUCIÓN PARA HEADER FIJO EN MÓVILES --- */
@media (max-width: 767px) {
    body {
        padding-top: 5rem;
    }
}

/* --- ACORDEÓN DE PREGUNTAS FRECUENTES (FAQ) --- */
.faq-item {
    background-color: #1F2937; /* bg-gray-800 */
    border-radius: 0.75rem; /* rounded-xl */
    border: 1px solid #374151; /* border-gray-700 */
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.25rem; /* p-5 */
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-weight: 600; /* font-semibold */
    color: #F3F4F6; /* text-gray-100 */
    cursor: pointer;
    background-color: transparent;
    border: none;
}

.faq-question:hover {
    color: #FBBF24; /* text-yellow-400 */
}

.faq-icon {
    width: 1.25rem; /* w-5 */
    height: 1.25rem; /* h-5 */
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    /* ESTA ES LA TRANSICIÓN CLAVE QUE FALTABA */
    transition: max-height 0.5s ease-in-out, padding 0.5s ease-in-out;
}

.faq-answer p {
    padding: 0 1.25rem 1.25rem;
    color: #9CA3AF; /* text-gray-400 */
    line-height: 1.6;
}

/* --- ESTADO ACTIVO DEL ACORDEÓN (CONTROLADO POR JS) --- */
.faq-item.active .faq-question {
    color: #FBBF24; /* text-yellow-400 */
}

.faq-item.active .faq-icon {
    transform: rotate(45deg); /* Gira el '+' para formar una 'x' */
}

.faq-item.active .faq-answer {
    /* Al añadir la clase 'active', la altura máxima crece y se revela el contenido */
    max-height: 200px; /* Ajusta este valor si tus respuestas son muy largas */
}
/* ================================================= */
/* == Pega esto en tu archivo app.css para       == */
/* == recuperar el efecto de cristal en el menú  == */
/* ================================================= */

#mobile-menu {
    /* Fondo oscuro con 80% de opacidad. Puedes ajustar el color si quieres. */
    background-color: rgba(17, 24, 39, 0.8); /* Equivalente a bg-gray-900 con 80% de opacidad */

    /* ¡ESTA ES LA LÍNEA MÁGICA PARA EL EFECTO CRISTAL! */
    backdrop-filter: blur(12px); /* Un blur mediano, como "backdrop-blur-md" de Tailwind */
    -webkit-backdrop-filter: blur(12px); /* Necesario para que funcione en Safari (iPhones/iPads) */
}

/* --- ESTILOS GENERALES Y GRADIENTES --- */
body {
    background-color: #111827; /* bg-gray-900 */
}

.font-inter {
    font-family: 'Inter', sans-serif;
}

.gradient-text {
    background: linear-gradient(to right, #FBBF24, #F59E0B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

/* --- ANIMACIÓN AL HACER SCROLL --- */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- BOTONES CTA --- */
.btn-cta-yellow {
    background-color: #FBBF24;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.2);
}
.btn-cta-yellow:hover {
    background-color: #FCD34D;
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 25px rgba(252, 211, 77, 0.3);
}

.btn-cta-cyan {
    background-color: #0891b2;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 15px rgba(8, 145, 178, 0.2);
}
.btn-cta-cyan:hover {
    background-color: #06b6d4;
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 25px rgba(6, 182, 212, 0.3);
}

/* --- TARJETAS DE SERVICIOS / COMPARATIVA --- */
.service-card {
    padding: 2rem;
    border-radius: 1.5rem;
    border: 1px solid #374151; /* border-gray-700 */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* Variantes de color para tarjetas */
.service-card-red { background: radial-gradient(circle, rgba(220, 38, 38, 0.15) 0%, rgba(127, 29, 29, 0.1) 100%); border-color: rgba(220, 38, 38, 0.3); }
.service-card-green { background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, rgba(6, 95, 70, 0.1) 100%); border-color: rgba(16, 185, 129, 0.3); }
.service-card-purple { background: radial-gradient(circle, rgba(147, 51, 234, 0.15) 0%, rgba(107, 33, 168, 0.1) 100%); border-color: rgba(147, 51, 234, 0.3); }
.service-card-cyan { background: radial-gradient(circle, rgba(6, 182, 212, 0.15) 0%, rgba(8, 145, 178, 0.1) 100%); border-color: rgba(6, 182, 212, 0.3); }

/* --- TARJETAS DE PLANES (PAQUETES) --- */
.plan-card {
    background-color: #1f2937; /* bg-gray-800 */
    border: 1px solid #374151;
    border-radius: 1rem;
    padding: 2rem;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.plan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}
.plan-card ul {
    list-style: none;
    padding: 0;
}
.plan-card li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.75rem;
}
.plan-card li::before {
    content: '✔';
    position: absolute;
    left: 0;
    top: 0;
    color: #34d399; /* emerald-400 */
}

/* --- HEADER MOVIL CON BLUR --- */
#mobile-menu {
    background-color: rgba(17, 24, 39, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

/* --- ESTILOS GENERALES Y GRADIENTES --- */
body {
    background-color: #111827; /* bg-gray-900 */
}

.font-inter {
    font-family: 'Inter', sans-serif;
}

.gradient-text {
    background: linear-gradient(to right, #FBBF24, #F59E0B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

/* --- ANIMACIÓN AL HACER SCROLL --- */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- BOTONES CTA --- */
.btn-cta-yellow {
    background-color: #FBBF24;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.2);
}
.btn-cta-yellow:hover {
    background-color: #FCD34D;
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 25px rgba(252, 211, 77, 0.3);
}

.btn-cta-cyan {
    background-color: #0891b2;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 15px rgba(8, 145, 178, 0.2);
}
.btn-cta-cyan:hover {
    background-color: #06b6d4;
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 25px rgba(6, 182, 212, 0.3);
}

/* --- TARJETAS DE SERVICIOS / COMPARATIVA / ECOSISTEMA --- */
.service-card {
    border-radius: 1.5rem;
    border: 1px solid #374151; /* border-gray-700 */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: rgba(31, 41, 55, 0.5); /* bg-gray-800 semi-transparente */
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

/* Variantes de color para tarjetas */
.service-card-red { background: radial-gradient(circle at top left, rgba(220, 38, 38, 0.15) 0%, rgba(31, 41, 55, 0.8) 100%); border-color: rgba(220, 38, 38, 0.3); }
.service-card-green { background: radial-gradient(circle at top left, rgba(16, 185, 129, 0.15) 0%, rgba(31, 41, 55, 0.8) 100%); border-color: rgba(16, 185, 129, 0.3); }
.service-card-blue { background: radial-gradient(circle at top left, rgba(59, 130, 246, 0.15) 0%, rgba(31, 41, 55, 0.8) 100%); border-color: rgba(59, 130, 246, 0.3); }
.service-card-purple { background: radial-gradient(circle at top left, rgba(147, 51, 234, 0.15) 0%, rgba(31, 41, 55, 0.8) 100%); border-color: rgba(147, 51, 234, 0.3); }

/* --- ITEMS DE CARACTERÍSTICAS (Grid pequeña) --- */
.feature-item {
    background-color: rgba(31, 41, 55, 0.6);
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid #374151;
    transition: background-color 0.2s;
}
.feature-item:hover {
    background-color: rgba(31, 41, 55, 0.9);
    border-color: #4B5563;
}

/* --- TARJETAS DE PLANES (PAQUETES) --- */
.plan-card {
    background-color: #1f2937; /* bg-gray-800 */
    border: 1px solid #374151;
    border-radius: 1rem;
    padding: 2rem;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.plan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}
.plan-card ul {
    list-style: none;
    padding: 0;
}
.plan-card li {
    position: relative;
    padding-left: 1.25rem;
    margin-bottom: 0.75rem;
}
.plan-card li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #9CA3AF;
    font-weight: bold;
}
/* Iconos específicos para listas destacadas */
.service-card li i, .plan-card li i {
    min-width: 1.25rem;
}

/* --- LISTAS CON ICONOS --- */
ul.fa-ul li {
    margin-bottom: 0.5rem;
}

/* --- HEADER MOVIL --- */
#mobile-menu {
    /* Fondo con blur */
    background-color: rgba(0, 0, 0, 0.9); 
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

/* --- ESTILOS GENERALES Y GRADIENTES --- */
body {
    background-color: #111827; /* bg-gray-900 */
}

.font-inter {
    font-family: 'Inter', sans-serif;
}

.gradient-text {
    background: linear-gradient(to right, #FBBF24, #F59E0B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

/* --- ANIMACIÓN AL HACER SCROLL --- */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- BOTONES CTA --- */
.btn-cta-yellow {
    background-color: #FBBF24;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.2);
}
.btn-cta-yellow:hover {
    background-color: #FCD34D;
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 25px rgba(252, 211, 77, 0.3);
}

.btn-cta-cyan {
    background-color: #0891b2;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 15px rgba(8, 145, 178, 0.2);
}
.btn-cta-cyan:hover {
    background-color: #06b6d4;
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 25px rgba(6, 182, 212, 0.3);
}

/* --- TARJETAS DE SERVICIOS / COMPARATIVA --- */
.service-card {
    border-radius: 1.5rem;
    border: 1px solid #374151;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: rgba(31, 41, 55, 0.5); /* bg-gray-800 semi-transparente */
}
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

/* --- DETALLES DE CARACTERÍSTICAS (LISTAS ICONO + TEXTO) --- */
.feature-detail {
    background-color: rgba(17, 24, 39, 0.6); /* bg-gray-900 semi */
    padding: 1rem;
    border-radius: 0.75rem;
    border-left: 2px solid #374151; /* border-gray-700 */
    transition: border-color 0.3s;
}
.feature-detail:hover {
    border-left-color: #FBBF24; /* yellow-400 on hover */
    background-color: rgba(31, 41, 55, 0.8);
}

/* --- TARJETAS DE PLANES (PAQUETES) --- */
.plan-card {
    background-color: #1f2937; /* bg-gray-800 */
    border: 1px solid #374151;
    border-radius: 1rem;
    padding: 2rem;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.plan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}
.plan-card ul {
    list-style: none;
    padding: 0;
}
.plan-card li {
    position: relative;
    padding-left: 1.25rem;
    margin-bottom: 0.75rem;
}
.plan-card li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #9CA3AF;
    font-weight: bold;
}

/* --- HEADER MOVIL --- */
#mobile-menu {
    background-color: rgba(0, 0, 0, 0.9); 
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}