/* =========================================
   Montessori Boadilla - Core Styles
   Premium, Conversion-Focused Design
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;900&display=swap');

:root {
    /* Brand Colors */
    --color-primary: #003c75; /* Azul Oscuro */
    --color-accent: #f1a0c4; /* Rosa */
    --color-white: #ffffff;
    
    /* Support Colors */
    --color-bg-light: #f8fbff;
    --color-text-dark: #1a2a3a;
    --color-text-muted: #5a6e82;

    /* Typography */
    --font-primary: 'Montserrat', sans-serif;
    --font-weight-light: 300;
    --font-weight-black: 900;

    /* Shadows & Transitions */
    --shadow-soft: 0 10px 30px rgba(0, 60, 117, 0.08);
    --shadow-hover: 0 15px 40px rgba(0, 60, 117, 0.15);
    --transition-fast: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94); /* Respiración orgánica */
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    font-weight: var(--font-weight-light);
    color: var(--color-text-dark);
    background-color: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Typography Utilities with Fluid Typography clamp() */
h1, h2, h3, h4, h5, h6 {
    font-weight: var(--font-weight-black);
    color: var(--color-primary);
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); line-height: 1.15; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.8rem); line-height: 1.25; }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.8rem); line-height: 1.3; }
h4 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

p {
    margin-bottom: 1.5rem;
    color: var(--color-text-muted);
    font-size: clamp(0.95rem, 1.2vw, 1.1rem);
}

/* Layout Utilities */
.container {
    width: 100%;
    padding: 0 1.5rem;
    margin: 0 auto;
}

/* Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity var(--transition-smooth), transform var(--transition-smooth);
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    font-weight: var(--font-weight-black);
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    text-decoration: none;
    transition: all var(--transition-fast);
    cursor: pointer;
    border: none;
    font-size: 0.9rem;
}

.btn-primary {
    background-color: var(--color-accent);
    color: var(--color-white);
    box-shadow: 0 8px 20px rgba(241, 160, 196, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(241, 160, 196, 0.6);
    background-color: #e88eb7;
}

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

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

/* Top Bar Scarcity */
.top-bar {
    background-color: var(--color-primary);
    color: var(--color-white);
    text-align: center;
    padding: 0.5rem;
    font-size: 0.85rem;
    font-weight: bold;
    letter-spacing: 0.5px;
}

.top-bar strong {
    color: var(--color-accent);
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 100;
    box-shadow: var(--shadow-soft);
    padding: 1rem 0;
    transition: padding var(--transition-fast);
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-weight: var(--font-weight-black);
    font-size: 1.2rem;
    color: var(--color-primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

/* Hero Section */
.hero {
    padding-top: 60px;
    padding-bottom: 3rem;
    background: linear-gradient(135deg, var(--color-bg-light) 0%, var(--color-white) 100%);
    text-align: center;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 600px;
    margin: 0 auto;
}

.empathy-badge {
    display: inline-block;
    background: rgba(241, 160, 196, 0.15);
    color: var(--color-primary);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: clamp(0.75rem, 1vw, 0.9rem);
    font-weight: bold;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(241, 160, 196, 0.3);
}

.hero h1 {
    font-size: clamp(2rem, 4.5vw, 3.6rem);
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: clamp(0.95rem, 1.5vw, 1.2rem);
    margin-bottom: 2rem;
}

.hero-visual {
    margin-top: 3rem;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 60, 117, 0.1);
    position: relative;
}

.visual-glow {
    position: absolute;
    top: -20%;
    left: -20%;
    width: 140%;
    height: 140%;
    background: radial-gradient(circle, rgba(255,255,255,0.4) 0%, rgba(255,255,255,0) 70%);
    pointer-events: none;
    z-index: 2;
}

.hero-visual img {
    width: 100%;
    height: auto;
    display: block;
    transform: scale(1.02);
    transition: transform 15s ease-out;
}

.hero-visual:hover img {
    transform: scale(1.06);
}

/* Value Proposition Section */
.values {
    padding: 5rem 0;
    background-color: var(--color-white);
}

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

.section-header p {
    max-width: 500px;
    margin: 0 auto;
}

.grid-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.feature-card {
    background: var(--color-bg-light);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    transition: var(--transition-smooth);
    border: 1px solid rgba(0, 60, 117, 0.05);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(241, 160, 196, 0.3);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--color-primary);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

/* Big Numbers Section */
.big-numbers {
    padding: 2rem 0 4rem;
    background-color: var(--color-white);
}

.numbers-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    text-align: center;
}

.number-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem;
    background: var(--color-bg-light);
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.number-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.number-item .number {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: var(--font-weight-black);
    color: var(--color-accent);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.number-item .label {
    font-size: clamp(0.85rem, 1.2vw, 1rem);
    font-weight: bold;
    color: var(--color-primary);
}

/* Process Section (How it works) */
.process {
    padding: 5rem 0;
    background-color: var(--color-bg-light);
}

.process-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.step {
    background: var(--color-white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
    position: relative;
    border: 1px solid rgba(0, 60, 117, 0.05);
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--color-accent);
    color: var(--color-white);
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.step h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.step p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Testimonial / Social Proof Section */
.trust {
    padding: 5rem 0;
    background-color: var(--color-primary);
    color: var(--color-white);
    text-align: center;
}

.trust h2 {
    color: var(--color-white);
}

.trust-subtitle {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: left;
    backdrop-filter: blur(10px);
}

.testimonial-card .stars {
    color: var(--color-accent);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-card p {
    color: var(--color-white);
    font-style: italic;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.testimonial-card .author {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-weight: bold;
}

/* Conversion CTA Section */
.conversion-section {
    padding: 6rem 0;
    background: linear-gradient(to bottom, var(--color-white) 0%, var(--color-bg-light) 100%);
}

.conversion-box {
    background: var(--color-white);
    border-radius: 24px;
    padding: 3rem 2rem;
    box-shadow: var(--shadow-hover);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    border-top: 4px solid var(--color-accent);
}

.conversion-box h2 {
    margin-bottom: 1rem;
}

/* Offer Stack */
.offer-stack {
    list-style: none;
    text-align: left;
    margin: 2.5rem auto;
    max-width: 600px;
}

.offer-stack li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding: 1.25rem;
    background: var(--color-bg-light);
    border-radius: 12px;
    border-left: 4px solid var(--color-primary);
    transition: var(--transition-fast);
}

.offer-stack li:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-soft);
}

.offer-stack .check {
    color: var(--color-accent);
    font-size: 1.5rem;
    font-weight: bold;
    margin-right: 1rem;
    line-height: 1;
}

.offer-stack div strong {
    display: block;
    color: var(--color-primary);
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.offer-stack div span {
    font-size: 0.95rem;
    color: var(--color-text-muted);
}

/* Scarcity Alert */
.scarcity-alert {
    background-color: rgba(241, 160, 196, 0.1);
    color: var(--color-primary);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    font-size: 0.95rem;
    border: 1px dashed var(--color-accent);
    display: flex;
    gap: 0.5rem;
    align-items: flex-start;
}

.scarcity-alert ion-icon {
    color: var(--color-accent);
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Trust Badges */
.trust-badges {
    background-color: var(--color-white);
    padding: 2rem 0;
    border-bottom: 1px solid rgba(0, 60, 117, 0.05);
}

.badges-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    opacity: 0.9;
}

.badges-grid .badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.google-rating {
    text-align: center;
}

.google-rating .stars {
    color: #fbbc04;
    font-size: 1.5rem;
    letter-spacing: 2px;
}

.google-rating .rating-text {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.google-rating .rating-text strong {
    color: var(--color-text-dark);
}

.badges-grid span:not(.stars):not(.rating-text) {
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--color-text-muted);
}

/* Location Map Section */
.location-section {
    padding: 5rem 0;
    background-color: var(--color-white);
}

.map-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background-color: var(--color-bg-light);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

details {
    background: var(--color-white);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-soft);
    cursor: pointer;
    transition: var(--transition-fast);
}

details:hover {
    box-shadow: var(--shadow-hover);
}

summary {
    font-weight: bold;
    font-size: 1.1rem;
    color: var(--color-primary);
    list-style: none;
    position: relative;
    padding-right: 1.5rem;
}

summary::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    color: var(--color-accent);
    font-size: 1.5rem;
    line-height: 1;
}

details[open] summary::after {
    content: '-';
}

details p {
    margin-top: 1rem;
    margin-bottom: 0;
    padding-top: 1rem;
    border-top: 1px dashed rgba(0, 60, 117, 0.1);
}

/* Lead Form */
.lead-form {
    margin-top: 2rem;
    display: grid;
    gap: 1rem;
    text-align: left;
}

.form-group input {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(0, 60, 117, 0.2);
    border-radius: 8px;
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.form-group input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(241, 160, 196, 0.3);
}

.lead-form button {
    width: 100%;
    margin-top: 1rem;
}

/* Footer */
.site-footer {
    background-color: var(--color-text-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 4rem 0 2rem;
    text-align: center;
}

.site-footer .logo {
    color: var(--color-white);
    justify-content: center;
    margin-bottom: 1.5rem;
}

.site-footer p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

/* Responsive Styles (Tablet and Up) */
@media (min-width: 768px) {
    .container {
        max-width: 720px;
        padding: 0 2rem;
    }

    h1 { font-size: 3.5rem; }
    h2 { font-size: 2.5rem; }

    .hero-content {
        max-width: 800px;
    }

    .grid-features {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .numbers-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .conversion-box {
        padding: 4rem;
    }
}

@media (min-width: 1024px) {
    .container {
        max-width: 1140px;
    }

    .hero {
        padding-top: 60px;
        text-align: left;
    }

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

    .hero-visual {
        margin-top: 0;
    }
    
    .process-steps {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* =========================================
   Blog & SEO Structure Styles
   ========================================= */

/* Breadcrumbs */
.breadcrumbs {
    background-color: var(--color-bg-light);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 60, 117, 0.05);
    font-size: 0.9rem;
}

.breadcrumbs ol {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.breadcrumbs a {
    color: var(--color-primary);
    text-decoration: none;
    transition: var(--transition-fast);
}

.breadcrumbs a:hover {
    color: var(--color-accent);
}

.breadcrumbs .separator {
    color: var(--color-text-muted);
}

.breadcrumbs [aria-current="page"] {
    color: var(--color-text-muted);
}

/* Blog Layout */
.article-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 4rem 1.5rem;
}

@media (min-width: 1024px) {
    .article-container {
        grid-template-columns: 2fr 1fr;
        padding: 5rem 2rem;
    }
}

/* Post Content */
.post-header {
    margin-bottom: 2rem;
}

.post-category {
    display: inline-block;
    background-color: rgba(241, 160, 196, 0.15);
    color: var(--color-primary);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.post-header h1 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .post-header h1 { font-size: 2.8rem; }
}

.post-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.8rem;
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.post-meta .dot {
    color: var(--color-accent);
}

.post-featured-image {
    width: 100%;
    height: auto;
    border-radius: 16px;
    margin-bottom: 3rem;
    box-shadow: var(--shadow-soft);
}

/* Post Typography & Hierarchy */
.post-body h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
    border-bottom: 2px solid rgba(241, 160, 196, 0.3);
    padding-bottom: 0.5rem;
    display: inline-block;
}

.post-body h3 {
    font-size: 1.4rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--color-text-dark);
}

.post-body p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.post-body strong {
    color: var(--color-text-dark);
}

.article-divider {
    border: none;
    height: 1px;
    background-color: rgba(0, 60, 117, 0.1);
    margin: 3rem 0;
}

.post-cta {
    background-color: var(--color-bg-light);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    border: 1px dashed var(--color-accent);
}

/* Sidebar Widgets */
.post-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.widget {
    background-color: var(--color-white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0, 60, 117, 0.05);
}

.widget h3, .widget h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--color-accent);
    padding-bottom: 0.5rem;
    display: inline-block;
}

.recent-posts {
    list-style: none;
}

.recent-posts li {
    margin-bottom: 1.2rem;
    padding-bottom: 1.2rem;
    border-bottom: 1px dashed rgba(0, 60, 117, 0.1);
}

.recent-posts li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.recent-posts a {
    display: block;
    color: var(--color-text-dark);
    font-weight: bold;
    text-decoration: none;
    line-height: 1.4;
    margin-bottom: 0.4rem;
    transition: color var(--transition-fast);
}

.recent-posts a:hover {
    color: var(--color-primary);
}

.widget-date {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.cta-widget {
    background-color: var(--color-primary);
    color: var(--color-white);
    text-align: center;
}

.cta-widget h4 {
    border-bottom-color: rgba(255, 255, 255, 0.2);
    color: var(--color-white);
}

.cta-widget p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.cta-widget .btn-outline {
    border-color: rgba(255, 255, 255, 0.5);
    color: var(--color-white);
}

.cta-widget .btn-outline:hover {
    background-color: var(--color-accent);
    border-color: var(--color-accent);
}

/* Home Blog Section */
.blog-preview-section {
    padding: 5rem 0;
    background-color: var(--color-white);
}

.blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .blog-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.blog-card {
    background-color: var(--color-bg-light);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-fast);
    border: 1px solid rgba(0, 60, 117, 0.05);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.blog-card-img {
    height: 200px;
    width: 100%;
    object-fit: cover;
}

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

.blog-card-meta {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: bold;
}

.blog-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.blog-card h3 a {
    color: var(--color-text-dark);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.blog-card h3 a:hover {
    color: var(--color-primary);
}

.blog-card p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.blog-card .read-more {
    font-weight: bold;
    color: var(--color-primary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color var(--transition-fast);
}

.blog-card .read-more:hover {
    color: var(--color-accent);
}

/* =========================================
   Navigation Menu (Mobile First)
   ========================================= */

.menu-toggle {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 200;
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--color-primary);
    position: relative;
    transition: var(--transition-fast);
}

.hamburger::before, .hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: var(--color-primary);
    transition: var(--transition-fast);
    left: 0;
}

.hamburger::before { top: -8px; }
.hamburger::after { top: 8px; }

/* Hamburger Open State */
.menu-toggle[aria-expanded="true"] .hamburger { background-color: transparent; }
.menu-toggle[aria-expanded="true"] .hamburger::before { top: 0; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] .hamburger::after { top: 0; transform: rotate(-45deg); }

.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0,30,60,0.5);
    backdrop-filter: blur(4px);
    z-index: 140;
    display: none;
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.nav-overlay.active {
    display: block;
    opacity: 1;
}

.main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background-color: var(--color-white);
    box-shadow: -10px 0 30px rgba(0, 60, 117, 0.1);
    display: flex;
    flex-direction: column;
    padding: 100px 2rem 2rem;
    transition: right var(--transition-fast);
    z-index: 150;
    overflow-y: auto;
}

.main-nav.active {
    right: 0;
}

.nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--color-text-dark);
    font-weight: bold;
    font-size: 1.2rem;
    transition: color var(--transition-fast);
}

.nav-links a:hover {
    color: var(--color-accent);
}

.main-nav .btn {
    width: 100%;
    text-align: center;
}

@media (min-width: 1024px) {
    .menu-toggle { display: none; }
    
    .nav-overlay { display: none !important; }
    
    .main-nav {
        position: static;
        width: auto;
        max-width: none;
        height: auto;
        background: transparent;
        box-shadow: none;
        flex-direction: row;
        align-items: center;
        padding: 0;
        transform: none;
        overflow-y: visible;
    }
    
    .nav-links {
        flex-direction: row;
        gap: 1.25rem;
        margin-bottom: 0;
        margin-right: 1.5rem;
    }
    
    .nav-links a {
        font-size: 0.95rem;
        white-space: nowrap;
    }
    
    .main-nav .btn { width: auto; }
}

/* =========================================
   Home Page Refactored Styles (Hero & Problems)
   ========================================= */

.hero-custom {
    background-image: linear-gradient(to right, rgba(10, 37, 64, 0.95) 0%, rgba(10, 37, 64, 0.8) 50%, rgba(10, 37, 64, 0.2) 100%), url('../assets/hero-montessori.png');
    background-size: cover;
    background-position: center right;
    min-height: 75vh;
    display: flex;
    align-items: center;
    padding: 4rem 1.5rem 2rem;
}

.hero-custom .container {
    display: flex;
    justify-content: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.hero-content-left {
    color: var(--color-white);
    max-width: 650px;
    text-align: left;
}

.empathy-badge-custom {
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.15);
    color: var(--color-white);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(4px);
    display: inline-block;
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
    border-radius: 20px;
    font-weight: bold;
}

.hero-title-custom {
    color: var(--color-white);
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    margin-bottom: 1rem;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    line-height: 1.1;
}

.hero-description-custom {
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    line-height: 1.5;
}

.hero-ctas-container {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.btn-primary-custom {
    box-shadow: 0 8px 20px rgba(241, 160, 196, 0.4);
}

.btn-outline-custom {
    border-color: rgba(255, 255, 255, 0.6);
    color: var(--color-white);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(4px);
}

.miniclaims-container {
    display: flex;
    gap: 1.5rem;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.miniclaim-item {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.miniclaim-icon {
    color: var(--color-accent);
    font-size: 1.1rem;
}

.social-proof-pill {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    background: rgba(0, 0, 0, 0.3);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: fit-content;
    backdrop-filter: blur(8px);
}

.google-pill-info {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.95rem;
}

.google-pill-score {
    color: var(--color-white);
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.google-pill-icon {
    font-size: 1.1rem;
}

.google-pill-stars {
    color: #fbbc04;
    letter-spacing: 1px;
    font-size: 1rem;
}

.google-pill-text {
    color: rgba(255, 255, 255, 0.7);
    margin-left: 0.4rem;
    font-size: 0.85rem;
}

.social-proof-divider {
    width: 1px;
    height: 20px;
    background: rgba(255, 255, 255, 0.2);
}

.micole-pill-badge {
    display: flex;
    align-items: center;
}

.micole-pill-img {
    height: 32px;
    object-fit: contain;
    background: var(--color-white);
    padding: 3px 6px;
    border-radius: 4px;
}

/* Problems Section */
.problems-section {
    background-color: var(--color-bg-light);
    padding: 5rem 0;
}

.problems-header-title {
    color: var(--color-primary);
}

.problems-header-desc {
    max-width: 700px;
    margin: 0 auto;
}

.problem-card-custom {
    background: var(--color-white);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: var(--shadow-soft);
}

.problem-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.problem-icon-container {
    color: #e63946;
    font-size: 2.5rem;
    opacity: 0.85;
    line-height: 1;
    flex-shrink: 0;
}

.problem-card-title {
    font-size: 1.4rem;
    color: var(--color-primary);
    line-height: 1.2;
    margin-bottom: 0;
}

.problem-card-text {
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* Activities Refactored Styles */
.activities-banner {
    background: linear-gradient(135deg, var(--color-bg-light) 0%, var(--color-white) 100%);
    padding: 4rem 1.5rem 3rem;
}

.activities-banner-container {
    display: block;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.activities-title {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: var(--color-primary);
}

.activities-subtitle {
    color: var(--color-text-dark);
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.activities-grid-section {
    background-color: var(--color-white);
    padding: 4rem 0;
}

.activities-grid-container {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    align-items: stretch;
}

.activity-card {
    padding: 2.5rem 2rem;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
}

.activity-icon-container {
    background: var(--color-bg-light);
    color: var(--color-accent);
    font-size: 2.5rem;
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.activity-card-title {
    color: var(--color-primary);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.activity-list {
    list-style: none;
    padding: 0;
    margin: 0;
    color: var(--color-text-muted);
    flex: 1;
}

.activity-list.normal-size {
    font-size: 1rem;
    line-height: 1.8;
}

.activity-list.small-size {
    font-size: 0.95rem;
    line-height: 1.6;
}

.activity-list-item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.activity-list-icon {
    color: var(--color-accent);
    flex-shrink: 0;
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.activity-card-text {
    color: var(--color-text-muted);
    font-size: 1rem;
    line-height: 1.6;
    flex: 1;
}

.activity-card-text-small {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    color: var(--color-text-muted);
}

.newsletter-section {
    background: var(--color-primary);
    color: var(--color-white);
    padding: 5rem 1.5rem;
    text-align: center;
}

.newsletter-container {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--color-white);
}

.newsletter-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    color: var(--color-white);
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.newsletter-input {
    padding: 1rem 1.5rem;
    border-radius: 50px;
    border: none;
    flex: 1;
    min-width: 250px;
    font-size: 1rem;
    color: var(--color-text-dark);
}

.newsletter-btn {
    background: var(--color-accent);
    color: var(--color-white);
    border: none;
    box-shadow: none;
}

/* =========================================
   Conversion Section (2-Column Refactor)
   ========================================= */

.conversion-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    text-align: left;
}

@media (min-width: 1024px) {
    .conversion-box {
        max-width: 1100px;
    }
    
    .conversion-grid {
        grid-template-columns: 1.1fr 0.9fr;
        gap: 4rem;
    }
}

.conversion-info h2 {
    margin-bottom: 1rem;
    text-align: left;
}

.conversion-info p {
    text-align: left;
}

.conversion-info .offer-stack {
    margin: 2.5rem 0;
    max-width: none;
}

.conversion-form-container {
    background: var(--color-white);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid rgba(0, 60, 117, 0.05);
    box-shadow: var(--shadow-soft);
}

.conversion-form-container .scarcity-alert {
    margin-top: 0;
}

.conversion-form-container .lead-form {
    margin-top: 1.5rem;
}

/* =========================================
   Language Selector Styles
   ========================================= */
.lang-selector {
    border: none;
    background: transparent;
    font-size: 0.95rem;
    cursor: pointer;
    outline: none;
    color: var(--color-text);
    font-weight: 500;
    font-family: inherit;
    margin-bottom: 2rem; /* Give air between selector and CTA on mobile */
    align-self: flex-start;
}

@media (min-width: 1024px) {
    .lang-selector {
        margin-bottom: 0;
        margin-right: 1.5rem; /* Standard desktop margin */
        align-self: center;
    }
}

/* =========================================
   WhatsApp Floating Button
   ========================================= */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 34px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 2px 2px 15px rgba(0,0,0,0.3);
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 28px;
    }
}
