/* --- ESTILOS GENERALES Y GRADIENTES --- */
body {
    background-color: #111827; /* bg-gray-900 */
    font-family: 'Inter', sans-serif;
    color: #f5f5f5;
}

.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);
}

/* --- 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;
    }
}

/* Estilos Específicos para Botones CTA */
.btn-cta-yellow {
    background-color: #FBBF24; /* yellow-400 */
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.2);
    transition: all 0.3s ease-in-out;
}
.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-green {
    background-color: #25D366; /* WhatsApp Green */
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2);
    transition: all 0.3s ease-in-out;
}
.btn-cta-green:hover {
    background-color: #128C7E;
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.btn-cta-call {
    background-color: #EF4444; /* Red-500 */
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.2);
    transition: all 0.3s ease-in-out;
}
.btn-cta-call:hover {
    background-color: #DC2626; /* Red-600 */
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 25px rgba(239, 68, 68, 0.3);
}

/* Estilo de la tarjeta de opciones */
.option-card {
    background-color: #1F2937; /* bg-gray-800 */
    border: 1px solid #374151; /* border-gray-700 */
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.option-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(251, 191, 36, 0.2);
}

.option-card-whatsapp:hover {
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

.option-card-call:hover {
    box-shadow: 0 10px 20px rgba(239, 68, 68, 0.3);
}

.option-card-app:hover {
    box-shadow: 0 10px 20px rgba(251, 191, 36, 0.3);
}

/* --- ESTILOS PARA LA SECCIÓN DE PASOS --- */
.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 */
}

.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%;
}

.step-text-container {
    /* Asegura que el texto mantenga su orden original en mobile */
    order: 1; 
}

@media (min-width: 768px) {
    .step-layout.step-layout-reverse .step-text-container {
        /* Fuerza al texto a la izquierda cuando la imagen va a la derecha */
        order: 1; 
    }
}