 :root {
            /* Colores extraídos del Logo y Documento */
            --primary-teal: #007ea7; /* Azul fuerte */
            --secondary-pink: #edaec0; /* Rosa suave */
            --dark-text: #2c3e50;
            --light-bg: #fdfdfd;
            --white: #ffffff;
            --gray-light: #f4f4f4;
            --max-width: 1200px; /* Ancho máximo del contenido */
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            color: var(--dark-text);
            background-color: var(--light-bg);
            overflow-x: hidden; /* Previene scroll horizontal accidental */
            line-height: 1.6;
        }

        a { text-decoration: none; color: inherit; }
        ul { list-style: none; }

        /* CLASE DE CONTENCIÓN (MAX-WIDTH) */
        .container {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 20px; /* Margen lateral en móviles */
            width: 100%;
        }

        /* --- 0. Header & Nav --- */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            height: 80px;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            display: flex;
            align-items: center;
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary-teal);
            display: flex;
            align-items: center;
            gap: 10px;
            z-index: 1001; /* Encima del menú móvil */
        }

        .logo span { color: var(--secondary-pink); }

        .nav-links {
            display: flex;
            gap: 2rem;
            align-items: center;
        }

        .nav-links a {
            font-weight: 500;
            font-size: 0.9rem;
            transition: color 0.3s;
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: var(--secondary-pink);
            transition: width 0.3s;
        }

        .nav-links a:hover::after { width: 100%; }

        .cta-header {
            padding: 0.6rem 1.2rem;
            background-color: var(--primary-teal);
            color: white !important;
            border-radius: 50px;
            font-weight: 600;
            transition: transform 0.3s ease;
        }

        .cta-header:hover { transform: translateY(-2px); }
        .cta-header::after { display: none; } /* Sin subrayado en botón */

        /* Mobile Menu Styles */
        .hamburger {
            display: none;
            cursor: pointer;
            flex-direction: column;
            gap: 6px;
            z-index: 1002; /* Encima de todo */
        }
        .bar { 
            width: 30px; 
            height: 3px; 
            background: var(--primary-teal); 
            transition: all 0.3s ease-in-out; 
            border-radius: 2px;
        }

        /* Animación Hamburger a X */
        .hamburger.active .bar:nth-child(1) { transform: translateY(9px) rotate(45deg); }
        .hamburger.active .bar:nth-child(2) { opacity: 0; }
        .hamburger.active .bar:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 0;
                right: -100%; /* Oculto a la derecha */
                height: 100vh;
                width: 80%; /* Ocupa casi toda la pantalla */
                background: white;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                box-shadow: -5px 0 15px rgba(0,0,0,0.1);
                transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
                z-index: 1000;
            }
            .nav-links.active { right: 0; }
            .hamburger { display: flex; }
            
            .nav-links a { font-size: 1.2rem; margin: 1rem 0; }
        }

        /* --- 2. Hero Section --- */
        .hero {
            padding-top: 120px; /* Espacio para el header fijo */
            min-height: 80vh;
            display: flex;
            align-items: center;
            background: linear-gradient(135deg, #fff 60%, #fff0f5 60%);
            position: relative;
        }

        .hero-layout {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            align-items: center;
        }

        h1 {
            font-size: 3.5rem;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            color: var(--dark-text);
        }

        h1 span { color: var(--primary-teal); }

        .subheadline {
            font-size: 1.1rem;
            color: #666;
            margin-bottom: 2.5rem;
            max-width: 90%;
        }

        .cta-main {
            display: inline-block;
            padding: 1rem 2.5rem;
            background-color: var(--secondary-pink);
            color: var(--dark-text);
            font-weight: 700;
            font-size: 1.1rem;
            border-radius: 50px;
            box-shadow: 0 10px 20px rgba(237, 174, 192, 0.4);
            transition: transform 0.3s, box-shadow 0.3s;
            border: none;
            cursor: pointer;
        }

        .cta-main:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 25px rgba(237, 174, 192, 0.6);
        }

        .hero-visual {
            position: relative;
            height: 400px;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        /* Círculo decorativo en Hero */
        .hero-blob {
            width: 350px;
            height: 350px;
            background: var(--secondary-pink);
            border-radius: 50%;
            opacity: 0.2;
            position: absolute;
            animation: pulse 4s infinite ease-in-out;
        }

        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.25); }
            100% { transform: scale(1); }
        }


        /* --- 3. Social Proof --- */
        .social-proof {
            padding: 2rem 0;
            background: var(--white);
            border-bottom: 1px solid #eee;
        }
        .logos-container {
            display: flex;
            justify-content: center;
            gap: 3rem;
            flex-wrap: wrap;
            color: #888;
            font-weight: 600;
            align-items: center;
        }

        /* --- 4. Beneficios (Cards) --- */
        .benefits {
            padding: 6rem 0;
            background-color: var(--white);
        }
        .section-title {
            text-align: center;
            margin-bottom: 1rem;
            font-size: 2.5rem;
            color: var(--primary-teal);
        }
        .section-subtitle {
            text-align: center;
            margin-bottom: 4rem;
            color: #666;
        }
        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }
        .card {
            background: var(--white);
            padding: 2.5rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            text-align: left;
            border-top: 5px solid var(--secondary-pink);
            transition: transform 0.3s;
        }
        .card:hover { transform: translateY(-10px); }
        .card-icon { font-size: 2.5rem; margin-bottom: 1rem; }
        .card h3 { margin-bottom: 1rem; font-size: 1.3rem; color: var(--dark-text); }



        /* Efecto de Hover */
        .gs-card:hover {
            transform: translateY(-10px); /* Eleva la tarjeta ligeramente */
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15); /* Añade una sombra profunda */
            border-color: #74b9ff; /* Opcional: cambia el color del borde si tienes uno */
        }

        /* Animación del ícono al hacer hover */
        .gs-card:hover .card-icon {
            transform: scale(1.2); /* Agranda un poco el emoji/ícono */
            transition: transform 0.3s ease;
        }

        /* --- 5. Características (Z-Pattern) --- */
        .features { padding: 6rem 0; overflow: hidden; }
        .feature-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 6rem;
            gap: 4rem;
        }
        .feature-row.reverse { flex-direction: row-reverse; }
        .feature-text { flex: 1; }
        .feature-img {
            flex: 1;
            height: 400px;
            background-color: #eee;
            border-radius: 20px;
            position: relative;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }
        .feature-img img { width: 100%; height: 100%; object-fit: cover; }
        
        .feature-text h2 { font-size: 2rem; margin-bottom: 1rem; color: var(--primary-teal); line-height: 1.3;}
        .check-list { margin-top: 1.5rem; }
        .check-list li { margin-bottom: 0.8rem; display: flex; align-items: center; gap: 10px; font-weight: 500; }
        .check-list li::before { content: '✓'; color: var(--secondary-pink); font-weight: 800; font-size: 1.2rem; }

        /* --- 6. Testimonios --- */
        .testimonials {
            padding: 6rem 0;
            background-color: var(--gray-light);
            text-align: center;
        }
        .review-card {
            background: white;
            padding: 3rem 2rem;
            border-radius: 15px;
            max-width: 700px;
            margin: 0 auto 2rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            position: relative;
        }
        .quote-mark { font-size: 4rem; color: var(--secondary-pink); opacity: 0.5; position: absolute; top: -10px; left: 20px; font-family: serif; }

        /* --- 7. Precios --- */
        .pricing { padding: 6rem 0; text-align: center; }
        .price-card {
            background: white;
            border: 2px solid var(--primary-teal);
            border-radius: 20px;
            padding: 3rem;
            max-width: 450px;
            margin: 0 auto;
            position: relative;
            box-shadow: 0 15px 40px rgba(0,126,167,0.1);
        }
        .price-tag { font-size: 3.5rem; font-weight: 700; color: var(--dark-text); margin: 1rem 0; }
        .price-period { font-size: 1rem; color: #888; margin-bottom: 2rem;}
        .popular-badge {
            background: var(--secondary-pink);
            color: var(--dark-text);
            padding: 8px 20px;
            border-radius: 30px;
            font-size: 0.9rem;
            font-weight: 700;
            position: absolute;
            top: -18px;
            left: 50%;
            transform: translateX(-50%);
            box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        }

        /* --- 8. FAQ --- */
        .faq { padding: 6rem 0; background: var(--light-bg); }
        .accordion { max-width: 800px; margin: 0 auto; }
        .accordion-item {
            background: white;
            margin-bottom: 1rem;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
            border: 1px solid #eee;
        }
        .accordion-header {
            padding: 1.5rem;
            cursor: pointer;
            font-weight: 600;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background 0.3s;
        }
        .accordion-header:hover { background: #fafafa; }
        .accordion-body {
            padding: 0 1.5rem;
            max-height: 0;
            overflow: hidden;
            transition: all 0.4s ease-out;
            color: #666;
            background: #fbfbfb;
        }
        .accordion-body.open { padding-bottom: 1.5rem; max-height: 200px; }

        /* --- 9. CTA Final --- */
        .final-cta {
            padding: 6rem 0;
            background: var(--primary-teal);
            color: white;
            text-align: center;
        }
        .final-cta h2 { color: white; margin-bottom: 1rem; }
        .cta-white { 
            background: white; 
            color: var(--primary-teal); 
        }
        .cta-white:hover { 
            box-shadow: 0 10px 20px rgba(255,255,255,0.3); 
            transform: translateY(-3px);
        }

        /* --- 10. Footer --- */
        footer {
            padding: 4rem 0;
            background: var(--dark-text);
            color: #aaa;
            font-size: 0.9rem;
        }
        .footer-flex {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-logo { color: white; font-size: 1.5rem; font-weight: bold; margin-bottom: 1rem; display: block;}

        /* --- 11. Blog Section --- */
        .blog-section {
        padding: 6rem 0;
        background-color: #fff;
        }
    
        .blog-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            padding: 1rem 0;
        }

        .blog-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0,0,0,0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 1px solid #eee;
            display: flex;
            flex-direction: column;
        }

        .blog-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 126, 167, 0.15);
        }

        .blog-img {
            height: 200px;
            width: 100%;
            background-color: #eee;
            overflow: hidden;
        }
        
        .blog-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .blog-card:hover .blog-img img {
            transform: scale(1.1);
        }

        .blog-content {
            padding: 1.5rem;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .blog-tag {
            font-size: 0.8rem;
            color: var(--secondary-pink);
            font-weight: 700;
            text-transform: uppercase;
            margin-bottom: 0.5rem;
        }

        .blog-content h3 {
            font-size: 1.2rem;
            color: var(--dark-text);
            margin-bottom: 0.8rem;
            line-height: 1.3;
        }

        .blog-content p {
            font-size: 0.9rem;
            color: #666;
            margin-bottom: 1.5rem;
            flex-grow: 1;
        }

        .blog-link {
            font-weight: 600;
            color: var(--primary-teal);
            display: inline-flex;
            align-items: center;
            gap: 5px;
        }

        .blog-link:hover {
            text-decoration: underline;
        }

        /* Scroll Snap para sensación de carrusel en móvil */
        @media (max-width: 768px) {
            .blog-container {
                display: flex;
                overflow-x: auto;
                scroll-snap-type: x mandatory;
                padding-bottom: 20px;
                gap: 1.5rem;
            }
            .blog-card {
                min-width: 280px;
                scroll-snap-align: start;
            }
        }

        /* Media Queries para Responsive */
        @media (max-width: 900px) {
            h1 { font-size: 2.5rem; }
            .hero-layout { grid-template-columns: 1fr; text-align: center; }
            .hero-visual { display: none; } /* Ocultar imagen decorativa en mobile para enfocar copy */
            .subheadline { margin-left: auto; margin-right: auto; }
            .feature-row { flex-direction: column; text-align: center; gap: 2rem; }
            .feature-row.reverse { flex-direction: column; }
            .feature-img { width: 100%; height: 250px; }
            .check-list li { justify-content: center; }
        }