/* Reset y Variables */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #4f46e5;
    --primary-dark: #4338ca;
    --secondary-color: #10b981;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --white: #ffffff;
    --border-color: #e5e7eb;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

html {
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    font-feature-settings: 'cv02', 'cv03', 'cv04', 'cv11';
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    z-index: 1000;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-image {
    height: 45px;
    width: auto;
    filter: drop-shadow(0 2px 8px rgba(79, 70, 229, 0.2));
}

.logo-icon {
    font-size: 2rem;
}

.logo-text {
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.7rem 1.3rem;
    border-radius: 12px;
    display: block;
    position: relative;
}

.nav-menu a:hover {
    color: var(--primary-color);
    background: rgba(79, 70, 229, 0.08);
    backdrop-filter: blur(10px);
}

.nav-menu li:last-child a {
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.9) 0%, rgba(99, 102, 241, 0.9) 100%);
    backdrop-filter: blur(10px);
    color: white;
    padding: 0.8rem 1.6rem;
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-menu li:last-child a:hover {
    background: linear-gradient(135deg, rgba(55, 48, 163, 0.95) 0%, rgba(79, 70, 229, 0.95) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(79, 70, 229, 0.4);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 4px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: all 0.3s;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
}

.btn-large {
    padding: 16px 40px;
    font-size: 1.1rem;
}

/* Hero Section */
.hero {
    padding: 140px 20px 80px;
    background: linear-gradient(135deg, #f0f4ff 0%, #e0e7ff 100%);
    scroll-snap-align: start;
    min-height: 100vh;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.highlight {
    color: var(--primary-color);
    position: relative;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.stat h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat p {
    color: var(--text-light);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    width: 100%;
    max-width: 500px;
    animation: float 3s ease-in-out infinite;
}

.image-placeholder svg {
    width: 100%;
    height: auto;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Animaciones SVG - Efecto de escritura */
@keyframes drawLine {
    from {
        stroke-dashoffset: 300;
    }
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes checkmarkAppear {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Features Section */
.features {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f0f4ff 0%, #e0e7ff 50%, #f0f9ff 100%);
    scroll-snap-align: start;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-header p {
    font-size: 1.25rem;
    color: var(--text-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.75);
    box-shadow: 0 15px 45px 0 rgba(79, 70, 229, 0.15);
    border-color: rgba(79, 70, 229, 0.3);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-light);
}

/* Benefits Section */
.benefits {
    padding: 80px 20px;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 50%, #fef3c7 100%);
    scroll-snap-align: start;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.benefits-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.benefits-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.benefit-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.benefit-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    opacity: 0.3;
}

.benefit-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.benefit-item p {
    color: var(--text-light);
}

.benefits-image {
    display: flex;
    justify-content: center;
}

/* Pricing Section */
.pricing {
    padding: 80px 20px;
    background: linear-gradient(135deg, #ede9fe 0%, #ddd6fe 50%, #e0e7ff 100%);
    scroll-snap-align: start;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-card {
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 24px;
    position: relative;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.75);
    box-shadow: 0 15px 45px 0 rgba(79, 70, 229, 0.15);
}

.pricing-card.featured {
    border-color: rgba(79, 70, 229, 0.5);
    border-width: 2px;
    background: rgba(255, 255, 255, 0.7);
    box-shadow: 0 8px 32px 0 rgba(79, 70, 229, 0.2);
}

.popular-badge {
    display: none; /* Ocultar badge de texto */
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: var(--white);
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.price {
    display: flex;
    align-items: baseline;
    margin-bottom: 2rem;
}

.currency {
    font-size: 1.5rem;
    color: var(--text-light);
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
}

.period {
    font-size: 1rem;
    color: var(--text-light);
    margin-left: 0.5rem;
}

.features-list {
    list-style: none;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.features-list li {
    padding: 0.75rem 0;
    color: var(--text-dark);
    border-bottom: 1px solid var(--border-color);
}

.features-list li:last-child {
    border-bottom: none;
}

.pricing-card .btn {
    width: 100%;
    text-align: center;
    margin-top: auto;
}

/* Pricing Subtitle */
.pricing-subtitle {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.annual-price {
    text-align: center;
    margin-top: 1rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

.annual-price strong {
    color: var(--secondary-color);
}

.pricing-note {
    text-align: center;
    margin-top: 3rem;
    padding: 1.5rem;
    background: #f0fdf4;
    border-radius: 12px;
    border: 2px solid var(--secondary-color);
}

.pricing-note p {
    margin: 0;
    font-size: 1.1rem;
    color: var(--text-dark);
}

/* CTA Section */
.cta {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    text-align: center;
    scroll-snap-align: start;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta .btn-primary {
    background: var(--white);
    color: var(--primary-color);
}

.cta .btn-primary:hover {
    background: var(--bg-light);
}

/* Contact Section */
.contact {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 50%, #f0f9ff 100%);
    scroll-snap-align: start;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.7);
    border-color: rgba(79, 70, 229, 0.5);
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.1);
}

.contact-form .btn {
    width: 100%;
    margin-top: 1rem;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 60px 20px 20px;
    scroll-snap-align: start;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--white);
}

.footer-section p {
    color: #9ca3af;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    color: #9ca3af;
}

.footer-disclaimer {
    margin: 1.5rem 0 1rem 0;
    padding-top: 1.5rem;
    border-top: 2px solid #374151;
}

.disclaimer-box {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    border: 2px solid #374151;
    border-radius: 8px;
    padding: 1.2rem 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.disclaimer-box h4 {
    color: #fbbf24;
    font-size: 0.9rem;
    margin: 0 0 0.6rem 0;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.disclaimer-box p {
    color: #d1d5db;
    font-size: 0.75rem;
    line-height: 1.5;
    margin: 0 0 0.5rem 0;
}

.disclaimer-box p:last-child {
    margin-bottom: 0;
}

.disclaimer-box strong {
    color: #fbbf24;
    font-weight: 600;
}

/* Benefits Image - Semáforo Demo */
.semaforo-demo {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: 0 8px 32px 0 rgba(79, 70, 229, 0.2);
    border: 2px solid rgba(79, 70, 229, 0.3);
}

.semaforo-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.traffic-light {
    background: #2d3748;
    padding: 0.8rem 0.6rem;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.light {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    opacity: 0.3;
    transition: opacity 0.3s;
}

.light.red {
    background: #ef4444;
}

.light.yellow {
    background: #f59e0b;
}

.light.green {
    background: #10b981;
}

.light.active {
    opacity: 1;
    box-shadow: 0 0 15px currentColor;
}

.semaforo-header h3 {
    margin: 0;
    color: var(--text-dark);
    font-size: 1.4rem;
}

.semaforo-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 1rem;
    font-weight: 500;
}

.semaforo-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.semaforo-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    border-radius: 12px;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.semaforo-row:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow);
}

.semaforo-row.green {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border-color: #10b981;
}

.semaforo-row.yellow {
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
    border-color: #f59e0b;
}

.semaforo-row.red {
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    border-color: #ef4444;
}

.color-indicator {
    font-size: 3rem;
    flex-shrink: 0;
    line-height: 1;
}

.semaforo-info {
    flex: 1;
}

.semaforo-info h4 {
    margin: 0 0 0.3rem 0;
    color: var(--text-dark);
    font-size: 1.2rem;
    font-weight: 700;
}

.semaforo-info p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.95rem;
}

.semaforo-footer {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px dashed var(--border-color);
}

.semaforo-footer p {
    margin: 0;
    color: var(--text-light);
    font-style: italic;
    font-size: 0.95rem;
}

/* Eliminar estilos antiguos */

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        padding: 2rem;
        box-shadow: var(--shadow);
        transition: left 0.3s;
    }

    .nav-menu.active {
        left: 0;
    }

    .menu-toggle {
        display: flex;
    }

    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
    }

    .story-line {
        font-size: 1.8rem;
    }

    .story-line.highlight-text {
        font-size: 2.2rem;
    }

    .story-line.bold-text {
        font-size: 2rem;
    }

    .story-context {
        padding: 1.5rem;
    }

    .story-context p {
        font-size: 1rem;
    }

    .benefits-content {
        grid-template-columns: 1fr;
    }

    .benefits-image {
        order: -1;
    }

    .semaforo-demo {
        padding: 1.5rem;
    }

    .semaforo-header {
        flex-direction: column;
        gap: 0.8rem;
    }

    .traffic-light {
        flex-direction: row;
        padding: 0.5rem 0.8rem;
    }

    .light {
        width: 25px;
        height: 25px;
    }

    .semaforo-header h3 {
        font-size: 1.2rem;
        text-align: center;
    }

    .semaforo-row {
        flex-direction: column;
        text-align: center;
        padding: 1.2rem;
    }

    .color-indicator {
        font-size: 2.5rem;
    }

    .semaforo-info h4 {
        font-size: 1.1rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .cta h2 {
        font-size: 2rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

.svg-line {
    stroke-dasharray: 300;
    stroke-dashoffset: 300;
    animation: drawLine 0.6s ease-out forwards;
}

.svg-line-1 {
    animation-delay: 0.3s;
}

.svg-line-2 {
    animation-delay: 0.7s;
}

.svg-line-3 {
    animation-delay: 1.1s;
}

.svg-line-4 {
    animation-delay: 1.5s;
}

/* Checkmark aparece después de las líneas */
.svg-checkmark {
    opacity: 0;
    animation: checkmarkAppear 0.5s ease-out 2.2s forwards;
    transform-origin: center;
}

/* Storytelling Section */
.storytelling {
    padding: 100px 20px;
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 50%, #1e1b4b 100%);
    scroll-snap-align: start;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.storytelling::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(79, 70, 229, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(16, 185, 129, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.storytelling-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.story-text {
    margin-bottom: 4rem;
}

.story-line {
    font-size: 2.5rem;
    font-weight: 600;
    color: #e0e7ff;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(30px);
    line-height: 1.4;
    transition: all 0.8s ease;
}

.story-line.visible {
    opacity: 1;
    transform: translateY(0);
}

.story-line:nth-child(1).visible {
    transition-delay: 0s;
}

.story-line:nth-child(2).visible {
    transition-delay: 0.3s;
}

.story-line:nth-child(3).visible {
    transition-delay: 0.6s;
}

.story-line:nth-child(4).visible {
    transition-delay: 1s;
}

.story-line:nth-child(5).visible {
    transition-delay: 1.5s;
}

.story-line.highlight-text {
    font-size: 3rem;
    color: #fbbf24;
    text-shadow: 0 0 30px rgba(251, 191, 36, 0.5);
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.story-line.bold-text {
    font-size: 2.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.story-context {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2);
}

.story-context p {
    color: #e0e7ff;
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.story-context p:last-child {
    margin-bottom: 0;
}

.story-context strong {
    color: #10b981;
    font-weight: 700;
}

/* Features Section */
.features {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f0f4ff 0%, #e0e7ff 50%, #f0f9ff 100%);
    scroll-snap-align: start;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-header p {
    font-size: 1.25rem;
    color: var(--text-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.75);
    box-shadow: 0 15px 45px 0 rgba(79, 70, 229, 0.15);
    border-color: rgba(79, 70, 229, 0.3);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-light);
}

/* Benefits Section */
.benefits {
    padding: 80px 20px;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 50%, #fef3c7 100%);
    scroll-snap-align: start;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.benefits-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.benefits-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.benefit-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.benefit-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    opacity: 0.3;
}

.benefit-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.benefit-item p {
    color: var(--text-light);
}

.benefits-image {
    display: flex;
    justify-content: center;
}

/* Pricing Section */
.pricing {
    padding: 80px 20px;
    background: linear-gradient(135deg, #ede9fe 0%, #ddd6fe 50%, #e0e7ff 100%);
    scroll-snap-align: start;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-card {
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 24px;
    position: relative;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.75);
    box-shadow: 0 15px 45px 0 rgba(79, 70, 229, 0.15);
}

.pricing-card.featured {
    border-color: rgba(79, 70, 229, 0.5);
    border-width: 2px;
    background: rgba(255, 255, 255, 0.7);
    box-shadow: 0 8px 32px 0 rgba(79, 70, 229, 0.2);
}

.popular-badge {
    display: none; /* Ocultar badge de texto */
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: var(--white);
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.price {
    display: flex;
    align-items: baseline;
    margin-bottom: 2rem;
}

.currency {
    font-size: 1.5rem;
    color: var(--text-light);
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
}

.period {
    font-size: 1rem;
    color: var(--text-light);
    margin-left: 0.5rem;
}

.features-list {
    list-style: none;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.features-list li {
    padding: 0.75rem 0;
    color: var(--text-dark);
    border-bottom: 1px solid var(--border-color);
}

.features-list li:last-child {
    border-bottom: none;
}

.pricing-card .btn {
    width: 100%;
    text-align: center;
    margin-top: auto;
}

/* Pricing Subtitle */
.pricing-subtitle {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.annual-price {
    text-align: center;
    margin-top: 1rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

.annual-price strong {
    color: var(--secondary-color);
}

.pricing-note {
    text-align: center;
    margin-top: 3rem;
    padding: 1.5rem;
    background: #f0fdf4;
    border-radius: 12px;
    border: 2px solid var(--secondary-color);
}

.pricing-note p {
    margin: 0;
    font-size: 1.1rem;
    color: var(--text-dark);
}

/* CTA Section */
.cta {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    text-align: center;
    scroll-snap-align: start;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta .btn-primary {
    background: var(--white);
    color: var(--primary-color);
}

.cta .btn-primary:hover {
    background: var(--bg-light);
}

/* Contact Section */
.contact {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 50%, #f0f9ff 100%);
    scroll-snap-align: start;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.7);
    border-color: rgba(79, 70, 229, 0.5);
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.1);
}

.contact-form .btn {
    width: 100%;
    margin-top: 1rem;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 60px 20px 20px;
    scroll-snap-align: start;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--white);
}

.footer-section p {
    color: #9ca3af;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    color: #9ca3af;
}

.footer-disclaimer {
    margin: 1.5rem 0 1rem 0;
    padding-top: 1.5rem;
    border-top: 2px solid #374151;
}

.disclaimer-box {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    border: 2px solid #374151;
    border-radius: 8px;
    padding: 1.2rem 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.disclaimer-box h4 {
    color: #fbbf24;
    font-size: 0.9rem;
    margin: 0 0 0.6rem 0;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.disclaimer-box p {
    color: #d1d5db;
    font-size: 0.75rem;
    line-height: 1.5;
    margin: 0 0 0.5rem 0;
}

.disclaimer-box p:last-child {
    margin-bottom: 0;
}

.disclaimer-box strong {
    color: #fbbf24;
    font-weight: 600;
}

/* Benefits Image - Semáforo Demo */
.semaforo-demo {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: 0 8px 32px 0 rgba(79, 70, 229, 0.2);
    border: 2px solid rgba(79, 70, 229, 0.3);
}

.semaforo-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.traffic-light {
    background: #2d3748;
    padding: 0.8rem 0.6rem;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.light {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    opacity: 0.3;
    transition: opacity 0.3s;
}

.light.red {
    background: #ef4444;
}

.light.yellow {
    background: #f59e0b;
}

.light.green {
    background: #10b981;
}

.light.active {
    opacity: 1;
    box-shadow: 0 0 15px currentColor;
}

.semaforo-header h3 {
    margin: 0;
    color: var(--text-dark);
    font-size: 1.4rem;
}

.semaforo-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 1rem;
    font-weight: 500;
}

.semaforo-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.semaforo-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    border-radius: 12px;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.semaforo-row:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow);
}

.semaforo-row.green {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border-color: #10b981;
}

.semaforo-row.yellow {
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
    border-color: #f59e0b;
}

.semaforo-row.red {
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    border-color: #ef4444;
}

.color-indicator {
    font-size: 3rem;
    flex-shrink: 0;
    line-height: 1;
}

.semaforo-info {
    flex: 1;
}

.semaforo-info h4 {
    margin: 0 0 0.3rem 0;
    color: var(--text-dark);
    font-size: 1.2rem;
    font-weight: 700;
}

.semaforo-info p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.95rem;
}

.semaforo-footer {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px dashed var(--border-color);
}

.semaforo-footer p {
    margin: 0;
    color: var(--text-light);
    font-style: italic;
    font-size: 0.95rem;
}

/* Eliminar estilos antiguos */

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        padding: 2rem;
        box-shadow: var(--shadow);
        transition: left 0.3s;
    }

    .nav-menu.active {
        left: 0;
    }

    .menu-toggle {
        display: flex;
    }

    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
    }

    .story-line {
        font-size: 1.8rem;
    }

    .story-line.highlight-text {
        font-size: 2.2rem;
    }

    .story-line.bold-text {
        font-size: 2rem;
    }

    .story-context {
        padding: 1.5rem;
    }

    .story-context p {
        font-size: 1rem;
    }

    .benefits-content {
        grid-template-columns: 1fr;
    }

    .benefits-image {
        order: -1;
    }

    .semaforo-demo {
        padding: 1.5rem;
    }

    .semaforo-header {
        flex-direction: column;
        gap: 0.8rem;
    }

    .traffic-light {
        flex-direction: row;
        padding: 0.5rem 0.8rem;
    }

    .light {
        width: 25px;
        height: 25px;
    }

    .semaforo-header h3 {
        font-size: 1.2rem;
        text-align: center;
    }

    .semaforo-row {
        flex-direction: column;
        text-align: center;
        padding: 1.2rem;
    }

    .color-indicator {
        font-size: 2.5rem;
    }

    .semaforo-info h4 {
        font-size: 1.1rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .cta h2 {
        font-size: 2rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

.svg-line {
    stroke-dasharray: 300;
    stroke-dashoffset: 300;
    animation: drawLine 0.6s ease-out forwards;
}

.svg-line-1 {
    animation-delay: 0.3s;
}

.svg-line-2 {
    animation-delay: 0.7s;
}

.svg-line-3 {
    animation-delay: 1.1s;
}

.svg-line-4 {
    animation-delay: 1.5s;
}

/* Checkmark aparece después de las líneas */
.svg-checkmark {
    opacity: 0;
    animation: checkmarkAppear 0.5s ease-out 2.2s forwards;
    transform-origin: center;
}

/* Storytelling Section */
.storytelling {
    padding: 100px 20px;
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 50%, #1e1b4b 100%);
    scroll-snap-align: start;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.storytelling::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(79, 70, 229, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(16, 185, 129, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.storytelling-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.story-text {
    margin-bottom: 4rem;
}

.story-line {
    font-size: 2.5rem;
    font-weight: 600;
    color: #e0e7ff;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(30px);
    line-height: 1.4;
    transition: all 0.8s ease;
}

.story-line.visible {
    opacity: 1;
    transform: translateY(0);
}

.story-line:nth-child(1).visible {
    transition-delay: 0s;
}

.story-line:nth-child(2).visible {
    transition-delay: 0.3s;
}

.story-line:nth-child(3).visible {
    transition-delay: 0.6s;
}

.story-line:nth-child(4).visible {
    transition-delay: 1s;
}

.story-line:nth-child(5).visible {
    transition-delay: 1.5s;
}

.story-line.highlight-text {
    font-size: 3rem;
    color: #fbbf24;
    text-shadow: 0 0 30px rgba(251, 191, 36, 0.5);
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.story-line.bold-text {
    font-size: 2.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.story-context {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2);
}

.story-context p {
    color: #e0e7ff;
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.story-context p:last-child {
    margin-bottom: 0;
}

.story-context strong {
    color: #10b981;
    font-weight: 700;
}

/* Features Section */
.features {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f0f4ff 0%, #e0e7ff 50%, #f0f9ff 100%);
    scroll-snap-align: start;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-header p {
    font-size: 1.25rem;
    color: var(--text-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.75);
    box-shadow: 0 15px 45px 0 rgba(79, 70, 229, 0.15);
    border-color: rgba(79, 70, 229, 0.3);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-light);
}

/* Benefits Section */
.benefits {
    padding: 80px 20px;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 50%, #fef3c7 100%);
    scroll-snap-align: start;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.benefits-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.benefits-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.benefit-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.benefit-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    opacity: 0.3;
}

.benefit-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.benefit-item p {
    color: var(--text-light);
}

.benefits-image {
    display: flex;
    justify-content: center;
}

/* Pricing Section */
.pricing {
    padding: 80px 20px;
    background: linear-gradient(135deg, #ede9fe 0%, #ddd6fe 50%, #e0e7ff 100%);
    scroll-snap-align: start;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-card {
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 24px;
    position: relative;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.75);
    box-shadow: 0 15px 45px 0 rgba(79, 70, 229, 0.15);
}

.pricing-card.featured {
    border-color: rgba(79, 70, 229, 0.5);
    border-width: 2px;
    background: rgba(255, 255, 255, 0.7);
    box-shadow: 0 8px 32px 0 rgba(79, 70, 229, 0.2);
}

.popular-badge {
    display: none; /* Ocultar badge de texto */
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: var(--white);
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.price {
    display: flex;
    align-items: baseline;
    margin-bottom: 2rem;
}

.currency {
    font-size: 1.5rem;
    color: var(--text-light);
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
}

.period {
    font-size: 1rem;
    color: var(--text-light);
    margin-left: 0.5rem;
}

.features-list {
    list-style: none;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.features-list li {
    padding: 0.75rem 0;
    color: var(--text-dark);
    border-bottom: 1px solid var(--border-color);
}

.features-list li:last-child {
    border-bottom: none;
}

.pricing-card .btn {
    width: 100%;
    text-align: center;
    margin-top: auto;
}

/* Pricing Subtitle */
.pricing-subtitle {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.annual-price {
    text-align: center;
    margin-top: 1rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

.annual-price strong {
    color: var(--secondary-color);
}

.pricing-note {
    text-align: center;
    margin-top: 3rem;
    padding: 1.5rem;
    background: #f0fdf4;
    border-radius: 12px;
    border: 2px solid var(--secondary-color);
}

.pricing-note p {
    margin: 0;
    font-size: 1.1rem;
    color: var(--text-dark);
}

/* CTA Section */
.cta {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    text-align: center;
    scroll-snap-align: start;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta .btn-primary {
    background: var(--white);
    color: var(--primary-color);
}

.cta .btn-primary:hover {
    background: var(--bg-light);
}

/* Contact Section */
.contact {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 50%, #f0f9ff 100%);
    scroll-snap-align: start;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.7);
    border-color: rgba(79, 70, 229, 0.5);
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.1);
}

.contact-form .btn {
    width: 100%;
    margin-top: 1rem;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 60px 20px 20px;
    scroll-snap-align: start;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--white);
}

.footer-section p {
    color: #9ca3af;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    color: #9ca3af;
}

.footer-disclaimer {
    margin: 1.5rem 0 1rem 0;
    padding-top: 1.5rem;
    border-top: 2px solid #374151;
}

.disclaimer-box {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    border: 2px solid #374151;
    border-radius: 8px;
    padding: 1.2rem 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.disclaimer-box h4 {
    color: #fbbf24;
    font-size: 0.9rem;
    margin: 0 0 0.6rem 0;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.disclaimer-box p {
    color: #d1d5db;
    font-size: 0.75rem;
    line-height: 1.5;
    margin: 0 0 0.5rem 0;
}

.disclaimer-box p:last-child {
    margin-bottom: 0;
}

.disclaimer-box strong {
    color: #fbbf24;
    font-weight: 600;
}

/* Benefits Image - Semáforo Demo */
.semaforo-demo {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: 0 8px 32px 0 rgba(79, 70, 229, 0.2);
    border: 2px solid rgba(79, 70, 229, 0.3);
}

.semaforo-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.traffic-light {
    background: #2d3748;
    padding: 0.8rem 0.6rem;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.light {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    opacity: 0.3;
    transition: opacity 0.3s;
}

.light.red {
    background: #ef4444;
}

.light.yellow {
    background: #f59e0b;
}

.light.green {
    background: #10b981;
}

.light.active {
    opacity: 1;
    box-shadow: 0 0 15px currentColor;
}

.semaforo-header h3 {
    margin: 0;
    color: var(--text-dark);
    font-size: 1.4rem;
}

.semaforo-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 1rem;
    font-weight: 500;
}

.semaforo-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.semaforo-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    border-radius: 12px;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.semaforo-row:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow);
}

.semaforo-row.green {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border-color: #10b981;
}

.semaforo-row.yellow {
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
    border-color: #f59e0b;
}

.semaforo-row.red {
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    border-color: #ef4444;
}

.color-indicator {
    font-size: 3rem;
    flex-shrink: 0;
    line-height: 1;
}

.semaforo-info {
    flex: 1;
}

.semaforo-info h4 {
    margin: 0 0 0.3rem 0;
    color: var(--text-dark);
    font-size: 1.2rem;
    font-weight: 700;
}

.semaforo-info p {
    margin: 0;
    color: var(--text-light);
    font