body {
    font-family: 'Inter', sans-serif;
    background-color: #FFFFFF;
    color: #1e293b;
}

.section-bg {
    background-color: #f8fafc;
}

.cta-button {
    background-color: #2563eb;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.25);
}

.cta-button:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.3);
}

.secondary-button {
    background-color: #eef2ff;
    color: #374151;
    transition: all 0.3s ease;
}

.secondary-button:hover {
    background-color: #e0e7ff;
    transform: translateY(-2px);
}

.plan-card {
    background-color: white;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
}

.plan-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

.header-scrolled {
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(8px);
}

.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.testimonial-carousel {
    transition: transform 0.5s ease-in-out;
}

.feature-tab.active {
    background-color: #eff6ff;
    color: #1d4ed8;
    font-weight: 600;
}

.feature-content-panel {
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Clases para animación de entrada */
.animate-fade-in-left-1,
.animate-fade-in-left-2,
.animate-fade-in-left-3,
.animate-fade-in-left-4,
.animate-fade-in-left,
.animate-fade-in-right {
    opacity: 0;
    /* Empiezan ocultos */
}

/* Animaciones escalonadas para la sección principal */
.animate-fade-in-left-1 {
    animation: fadeInLeft 0.7s ease-out 0.2s forwards;
}

.animate-fade-in-left-2 {
    animation: fadeInLeft 0.7s ease-out 0.4s forwards;
}

.animate-fade-in-left-3 {
    animation: fadeInLeft 0.7s ease-out 0.6s forwards;
}

.animate-fade-in-left-4 {
    animation: fadeInLeft 0.7s ease-out 0.8s forwards;
}

/* Animación genérica para elementos que aparecen desde la derecha o izquierda con scroll */
.animate-fade-in-right.visible,
.animate-fade-in-right {
    animation: fadeInRight 0.8s ease-out forwards;
}

.animate-fade-in-left.visible {
    animation: fadeInLeft 0.8s ease-out forwards;
}