/* ==========================================================================
   DESIGN SYSTEM & CSS VARIABLES
   ========================================================================== */
:root {
    /* Color Palette - HSL Tailored */
    --color-primary: hsl(46, 100%, 50%);         /* Warm Golden Bee Yellow */
    --color-primary-hover: hsl(46, 100%, 43%);
    --color-primary-light: hsl(46, 100%, 94%);
    --color-primary-glow: hsla(46, 100%, 50%, 0.3);
    
    --color-secondary: hsl(223, 64%, 22%);       /* Premium Navy Blue */
    --color-secondary-hover: hsl(223, 64%, 15%);
    --color-secondary-light: hsl(223, 64%, 96%);
    
    --color-accent-cyan: hsl(190, 85%, 45%);     /* Cyan accent */
    --color-accent-cream: hsl(35, 100%, 96%);    /* Soft warm cream bg */
    --color-accent-orange: hsl(24, 100%, 60%);   /* Warm orange */
    
    --color-text-dark: hsl(223, 25%, 20%);       /* Soft charcoal dark text */
    --color-text-muted: hsl(223, 12%, 50%);      /* Slate gray text */
    --color-bg-white: hsl(0, 0%, 100%);
    --color-bg-soft: hsl(223, 40%, 96%);         /* Light slate blue bg */
    --color-border: hsl(223, 20%, 88%);
    
    /* Individual Level Colors for Tabs & Content */
    --color-bercario: hsl(340, 75%, 60%);        /* Soft Baby Pink */
    --color-bercario-light: hsl(340, 75%, 96%);
    --color-maternal1: hsl(46, 100%, 45%);       /* Honey Yellow */
    --color-maternal1-light: hsl(46, 100%, 94%);
    --color-maternal2: hsl(165, 60%, 42%);       /* Playful Mint Green */
    --color-maternal2-light: hsl(165, 60%, 94%);
    --color-periodo1: hsl(205, 75%, 50%);        /* Sky Blue */
    --color-periodo1-light: hsl(205, 75%, 95%);
    --color-periodo2: hsl(25, 90%, 55%);         /* Creative Orange */
    --color-periodo2-light: hsl(25, 90%, 95%);
    
    /* Typography */
    --font-heading: 'Quicksand', 'Segoe UI', sans-serif;
    --font-body: 'Outfit', 'Inter', sans-serif;
    
    /* Shadows */
    --shadow-sm: 0 4px 6px -1px rgba(12, 19, 38, 0.05);
    --shadow-md: 0 10px 15px -3px rgba(12, 19, 38, 0.08), 0 4px 6px -2px rgba(12, 19, 38, 0.03);
    --shadow-lg: 0 20px 25px -5px rgba(12, 19, 38, 0.1), 0 10px 10px -5px rgba(12, 19, 38, 0.04);
    --shadow-glow: 0 0 20px rgba(252, 185, 0, 0.4);
    
    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Radius */
    --radius-sm: 10px;
    --radius-md: 20px;
    --radius-lg: 32px;
    --radius-full: 9999px;
    
    /* Container Width */
    --max-width: 1200px;
}

/* ==========================================================================
   BASE STYLES & RESET
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-text-dark);
    background-color: var(--color-bg-white);
    overflow-x: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
    color: var(--color-secondary);
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    font-family: inherit;
    border: none;
    background: none;
    cursor: pointer;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

/* ==========================================================================
   REUSABLE UTILITIES & WAVE DIVIDERS
   ========================================================================== */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin-right: auto;
    margin-left: auto;
    padding-right: 1.5rem;
    padding-left: 1.5rem;
}

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

.highlight-text {
    color: var(--color-secondary);
    position: relative;
    display: inline-block;
    z-index: 1;
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 12px;
    background-color: var(--color-primary);
    z-index: -1;
    border-radius: var(--radius-sm);
    transform: skewX(-10deg);
}

.section-badge {
    display: inline-block;
    padding: 0.4rem 1.2rem;
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--color-secondary);
    background-color: var(--color-primary-light);
    border-radius: var(--radius-full);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 2px 4px rgba(252, 185, 0, 0.15);
}

.dark-theme-badge {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--color-primary);
    box-shadow: none;
}

.section-title {
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.75rem;
    }
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--color-text-muted);
    max-width: 600px;
    margin-right: auto;
    margin-left: auto;
}

.section-header {
    margin-bottom: 3.5rem;
}

/* Wave dividers styles */
.wave-divider {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.wave-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}

.wave-divider .shape-fill-white {
    fill: var(--color-bg-white);
}

.wave-divider .shape-fill-cream {
    fill: var(--color-accent-cream);
}

.wave-divider-top {
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.wave-divider-top svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}

.wave-divider-top .shape-fill-soft {
    fill: var(--color-bg-soft);
}

.wave-divider-top .shape-fill-navy {
    fill: var(--color-secondary);
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 2.2rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    border-radius: var(--radius-full);
    transition: var(--transition-normal);
    box-shadow: var(--shadow-sm);
}

.btn:active {
    transform: scale(0.98);
}

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

.btn-primary:hover {
    background-color: var(--color-primary-hover);
    box-shadow: var(--shadow-md), var(--shadow-glow);
    transform: translateY(-2px);
}

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

.btn-secondary:hover {
    background-color: var(--color-bg-white);
    border-color: var(--color-secondary);
    color: var(--color-secondary-hover);
    transform: translateY(-2px);
}

.btn-secondary-hero {
    background-color: rgba(255, 255, 255, 0.85);
    color: var(--color-secondary);
    border: 2px solid var(--color-primary);
}

.btn-secondary-hero:hover {
    background-color: var(--color-secondary);
    color: var(--color-bg-white);
    border-color: var(--color-secondary);
    transform: translateY(-2px);
}

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

.btn-secondary-white:hover {
    background-color: transparent;
    color: var(--color-bg-white);
    transform: translateY(-2px);
}

.btn-whatsapp-header {
    background-color: #25D366;
    color: white;
    padding: 0.6rem 1.4rem;
    font-size: 0.9rem;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-header:hover {
    background-color: #20ba59;
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.4);
    transform: translateY(-1px);
}

.btn-block {
    display: flex;
    width: 100%;
}

/* ==========================================================================
   NAVIGATION HEADER
   ========================================================================== */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid var(--color-border);
    transition: var(--transition-normal);
}

.main-header.scrolled {
    padding: 0.5rem 0;
    box-shadow: var(--shadow-md);
    background-color: rgba(255, 255, 255, 0.98);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    transition: var(--transition-normal);
}

.main-header.scrolled .header-container {
    height: 65px;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.header-logo {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--color-primary);
    box-shadow: var(--shadow-sm);
    object-fit: cover;
    transition: var(--transition-normal);
}

.main-header.scrolled .header-logo {
    width: 40px;
    height: 40px;
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.35rem;
    color: var(--color-secondary);
}

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

.nav-menu ul {
    display: flex;
    gap: 1.5rem;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    color: var(--color-text-muted);
    padding: 0.5rem 0;
    position: relative;
}

.nav-link:hover, .nav-link.active {
    color: var(--color-secondary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--color-primary);
    border-radius: var(--radius-full);
    transition: var(--transition-normal);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--color-secondary);
    border-radius: 3px;
    transition: var(--transition-normal);
}

/* Mobile Nav Styles */
@media (max-width: 991px) {
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--color-bg-white);
        border-bottom: 1px solid var(--color-border);
        padding: 1.5rem;
        box-shadow: var(--shadow-lg);
        transform: translateY(-150%);
        opacity: 0;
        pointer-events: none;
        transition: var(--transition-slow);
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }
    
    .nav-menu ul {
        flex-direction: column;
        gap: 1.25rem;
        align-items: center;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
    
    .btn-whatsapp-header {
        display: none;
    }
}

/* ==========================================================================
   HERO SECTION (VIBRANT GRADIENT & DECORS)
   ========================================================================== */
.hero-section {
    position: relative;
    padding-top: 170px;
    padding-bottom: 170px;
    background-color: var(--color-secondary); /* Navy blue backup bg */
    overflow: hidden;
}

/* Background video and overlay */
.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(21, 42, 85, 0.85) 0%, rgba(21, 42, 85, 0.55) 100%);
    z-index: 2;
}

/* Decorative Blobs & Honeycombs */
.hero-deco-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    z-index: 3;
    pointer-events: none;
}

.hero-deco-blob.b1 {
    width: 300px;
    height: 300px;
    background-color: hsla(46, 100%, 50%, 0.15);
    top: -50px;
    left: -100px;
}

.hero-deco-blob.b2 {
    width: 400px;
    height: 400px;
    background-color: hsla(0, 0%, 100%, 0.05);
    bottom: -100px;
    right: -100px;
}

.hero-deco-honeycomb {
    position: absolute;
    font-family: var(--font-heading);
    color: rgba(255, 255, 255, 0.05);
    user-select: none;
    pointer-events: none;
    z-index: 3;
}

.hero-deco-honeycomb.h1 {
    font-size: 8rem;
    top: 10%;
    left: 45%;
    transform: rotate(15deg);
}

.hero-deco-honeycomb.h2 {
    font-size: 6rem;
    bottom: 25%;
    left: 5%;
    transform: rotate(-10deg);
}

.hero-deco-honeycomb.h3 {
    font-size: 9rem;
    top: 25%;
    right: 5%;
    transform: rotate(45deg);
}

.hero-container {
    position: relative;
    z-index: 10;
}

.hero-container-centered {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(75vh - 100px);
}

.text-white {
    color: var(--color-bg-white) !important;
}

.justify-center {
    justify-content: center;
}

.highlight-text-white {
    color: var(--color-primary);
    position: relative;
    display: inline-block;
    z-index: 1;
}

.highlight-text-white::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.15);
    z-index: -1;
    border-radius: var(--radius-sm);
    transform: skewX(-10deg);
}

.hero-content {
    z-index: 10;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background-color: var(--color-bg-white);
    color: var(--color-secondary);
    border: 2px solid var(--color-primary);
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.hero-title {
    font-size: 2.85rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: var(--color-secondary);
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.9rem;
    }
}

.hero-description {
    font-size: 1.15rem;
    color: var(--color-text-dark);
    opacity: 0.9;
    margin-bottom: 2.5rem;
    max-width: 550px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.hero-media {
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 5;
}

.hero-video-wrapper {
    position: relative;
    width: 100%;
    max-width: 480px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 8px solid var(--color-bg-white);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
    aspect-ratio: 16 / 9;
}

.hero-video-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 45px rgba(12, 19, 38, 0.25);
}

.hero-video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

/* Floating animation */
.floating-animation {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(1.5deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

.mascot-trail {
    position: absolute;
    bottom: 5%;
    left: -20%;
    width: 120px;
    height: 80px;
    border: 3px dashed var(--color-primary);
    border-color: var(--color-primary) transparent transparent transparent;
    border-radius: 50%/100px 100px 0 0;
    transform: rotate(-30deg);
    opacity: 0.6;
    animation: trail 6s ease-in-out infinite;
    z-index: 1;
}

@keyframes trail {
    0% { opacity: 0.3; transform: rotate(-30deg) scale(0.9); }
    50% { opacity: 0.6; transform: rotate(-25deg) scale(1.05); }
    100% { opacity: 0.3; transform: rotate(-30deg) scale(0.9); }
}

/* ==========================================================================
   ABOUT SECTION
   ========================================================================== */
.about-section {
    padding: 120px 0;
    background-color: var(--color-bg-white);
    overflow: hidden;
}

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

@media (min-width: 992px) {
    .about-container {
        grid-template-columns: 0.95fr 1.05fr;
    }
}

.about-media {
    display: flex;
    justify-content: center;
    position: relative;
}

.about-image-card {
    background: linear-gradient(145deg, #FFFFFF, var(--color-accent-cream));
    border-radius: 32px;
    padding: 1.5rem;
    box-shadow: 0 16px 36px rgba(21, 42, 85, 0.08);
    position: relative;
    border: 4px solid var(--color-primary-light);
    width: 100%;
    max-width: 380px;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.about-image-card::before {
    content: '⬢';
    position: absolute;
    top: 10px;
    left: 15px;
    color: var(--color-primary);
    font-size: 2rem;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.08));
    z-index: 2;
}

.about-mascot {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    object-fit: contain;
    filter: drop-shadow(0 8px 18px rgba(21, 42, 85, 0.12));
    transform: scale(1);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.about-image-card:hover .about-mascot {
    transform: scale(1.03);
}

.about-content {
    max-width: 550px;
}

.about-paragraph {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
}

.about-paragraph strong {
    color: var(--color-secondary);
}

/* ==========================================================================
   EDUCATION LEVEL TABS (INDIVIDUAL COLOR CODING)
   ========================================================================== */
.education-section {
    padding: 140px 0 120px 0;
    background-color: var(--color-bg-soft);
    position: relative;
}

.education-container {
    position: relative;
    z-index: 10;
}

.education-tabs-nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-bottom: 3.5rem;
}

@media (min-width: 768px) {
    .education-tabs-nav {
        grid-template-columns: repeat(5, 1fr);
        gap: 1.25rem;
    }
}

.tab-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--color-bg-white);
    border: 2px solid transparent;
    padding: 1.5rem 1rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    text-align: center;
}

.tab-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* Individual Color Settings for Active State */
.tab-btn.active.t-bercario {
    background-color: var(--color-bercario);
    color: var(--color-bg-white);
    box-shadow: 0 10px 20px hsla(340, 75%, 60%, 0.35);
    transform: translateY(-5px);
}
.tab-btn.active.t-maternal1 {
    background-color: var(--color-maternal1);
    color: var(--color-bg-white);
    box-shadow: 0 10px 20px hsla(46, 100%, 45%, 0.35);
    transform: translateY(-5px);
}
.tab-btn.active.t-maternal2 {
    background-color: var(--color-maternal2);
    color: var(--color-bg-white);
    box-shadow: 0 10px 20px hsla(165, 60%, 42%, 0.35);
    transform: translateY(-5px);
}
.tab-btn.active.t-periodo1 {
    background-color: var(--color-periodo1);
    color: var(--color-bg-white);
    box-shadow: 0 10px 20px hsla(205, 75%, 50%, 0.35);
    transform: translateY(-5px);
}
.tab-btn.active.t-periodo2 {
    background-color: var(--color-periodo2);
    color: var(--color-bg-white);
    box-shadow: 0 10px 20px hsla(25, 90%, 55%, 0.35);
    transform: translateY(-5px);
}

.tab-icon {
    font-size: 2.25rem;
    margin-bottom: 0.5rem;
    transition: var(--transition-normal);
}

.tab-label {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 0.25rem;
}

.tab-age {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.tab-btn.active .tab-age {
    color: hsla(0, 0%, 100%, 0.85);
}

/* Tabs Panel Content */
.education-tabs-content {
    background-color: var(--color-bg-white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--color-border);
}

@media (min-width: 768px) {
    .education-tabs-content {
        padding: 4rem;
    }
}

.tab-pane {
    display: none;
    opacity: 0;
    transform: scale(0.98);
    transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}

.tab-pane.active {
    display: block;
    opacity: 1;
    transform: scale(1);
}

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

@media (min-width: 992px) {
    .pane-grid {
        grid-template-columns: 1.1fr 0.9fr;
    }
}

.pane-info h3 {
    font-size: 1.85rem;
    margin-bottom: 1.25rem;
    line-height: 1.3;
}

.pane-info p {
    font-size: 1.05rem;
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
}

.pane-age-badge {
    display: inline-block;
    padding: 0.35rem 1.1rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    border-radius: var(--radius-sm);
    margin-bottom: 1rem;
    color: var(--color-bg-white);
}

/* Tab Colors badges */
.pane-age-badge.p-bercario { background-color: var(--color-bercario); }
.pane-age-badge.p-maternal1 { background-color: var(--color-maternal1); }
.pane-age-badge.p-maternal2 { background-color: var(--color-maternal2); }
.pane-age-badge.p-periodo1 { background-color: var(--color-periodo1); }
.pane-age-badge.p-periodo2 { background-color: var(--color-periodo2); }

.pane-whatsapp-btn {
    margin-top: 1.5rem;
}

.pane-whatsapp-btn.btn-bercario { background-color: var(--color-bercario); color: white; }
.pane-whatsapp-btn.btn-bercario:hover { background-color: hsl(340, 75%, 52%); box-shadow: 0 4px 12px hsla(340, 75%, 60%, 0.3); }

.pane-whatsapp-btn.btn-maternal1 { background-color: var(--color-maternal1); color: white; }
.pane-whatsapp-btn.btn-maternal1:hover { background-color: hsl(46, 100%, 38%); box-shadow: 0 4px 12px hsla(46, 100%, 45%, 0.3); }

.pane-whatsapp-btn.btn-maternal2 { background-color: var(--color-maternal2); color: white; }
.pane-whatsapp-btn.btn-maternal2:hover { background-color: hsl(165, 60%, 35%); box-shadow: 0 4px 12px hsla(165, 60%, 42%, 0.3); }

.pane-whatsapp-btn.btn-periodo1 { background-color: var(--color-periodo1); color: white; }
.pane-whatsapp-btn.btn-periodo1:hover { background-color: hsl(205, 75%, 42%); box-shadow: 0 4px 12px hsla(205, 75%, 50%, 0.3); }

.pane-whatsapp-btn.btn-periodo2 { background-color: var(--color-periodo2); color: white; }
.pane-whatsapp-btn.btn-periodo2:hover { background-color: hsl(25, 90%, 47%); box-shadow: 0 4px 12px hsla(25, 90%, 55%, 0.3); }

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

@media (min-width: 576px) {
    .pane-highlights {
        grid-template-columns: repeat(2, 1fr);
    }
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.highlight-item i {
    width: 40px;
    height: 40px;
    background-color: var(--color-primary-light);
    color: var(--color-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.highlight-item span {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
}

.pane-visual {
    display: flex;
    justify-content: center;
}

.visual-card {
    width: 100%;
    max-width: 320px;
    height: 320px;
    border-radius: var(--radius-lg);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    overflow: hidden;
    border: 3px solid var(--color-border);
}

.bg-cream { background-color: var(--color-accent-cream); }
.bg-yellow { background-color: var(--color-primary-light); }
.bg-cyan { background-color: hsl(190, 85%, 96%); }
.bg-blue { background-color: hsl(223, 64%, 96%); }
.bg-orange { background-color: hsl(24, 100%, 96%); }

.visual-bee-icon {
    font-size: 7rem;
    z-index: 2;
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.1));
}

.visual-deco-circles {
    position: absolute;
    width: 200px;
    height: 200px;
    border: 2px dashed rgba(12, 19, 38, 0.08);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

/* ==========================================================================
   DIFFERENTIALS SECTION (COLORFUL INTERACTIVE CARDS)
   ========================================================================== */
.differentials-section {
    padding: 120px 0;
    background-color: var(--color-bg-white);
}

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

@media (min-width: 576px) {
    .differentials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .differentials-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.diff-card {
    background-color: var(--color-bg-white);
    border: 2px solid var(--color-border);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition-normal);
}

.diff-icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin: 0 auto 1.5rem auto;
    transition: var(--transition-normal);
}

/* Colorful Card Types */
.diff-card.d-blue { border-color: hsla(205, 75%, 50%, 0.2); }
.diff-card.d-blue .diff-icon-wrapper { background-color: var(--color-periodo1-light); color: var(--color-periodo1); }
.diff-card.d-blue:hover { border-color: var(--color-periodo1); box-shadow: 0 10px 25px hsla(205, 75%, 50%, 0.15); transform: translateY(-8px); }

.diff-card.d-yellow { border-color: hsla(46, 100%, 50%, 0.2); }
.diff-card.d-yellow .diff-icon-wrapper { background-color: var(--color-primary-light); color: var(--color-maternal1); }
.diff-card.d-yellow:hover { border-color: var(--color-primary); box-shadow: 0 10px 25px hsla(46, 100%, 50%, 0.15); transform: translateY(-8px); }

.diff-card.d-green { border-color: hsla(165, 60%, 42%, 0.2); }
.diff-card.d-green .diff-icon-wrapper { background-color: var(--color-maternal2-light); color: var(--color-maternal2); }
.diff-card.d-green:hover { border-color: var(--color-maternal2); box-shadow: 0 10px 25px hsla(165, 60%, 42%, 0.15); transform: translateY(-8px); }

.diff-card.d-orange { border-color: hsla(25, 90%, 55%, 0.2); }
.diff-card.d-orange .diff-icon-wrapper { background-color: var(--color-periodo2-light); color: var(--color-periodo2); }
.diff-card.d-orange:hover { border-color: var(--color-periodo2); box-shadow: 0 10px 25px hsla(25, 90%, 55%, 0.15); transform: translateY(-8px); }

.diff-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.diff-card p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
}

/* ==========================================================================
   TESTIMONIALS SECTION (PREMIUM DARK NAVY BLOCK)
   ========================================================================== */
.testimonials-section {
    padding: 140px 0 120px 0;
    background-color: var(--color-secondary);
    position: relative;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    position: relative;
    z-index: 10;
}

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

.testimonial-card.dark-card {
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 3.5rem 2.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    position: relative;
}

.testimonial-card.dark-card .quote-icon {
    position: absolute;
    top: 25px;
    right: 30px;
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.05);
}

.testimonial-card.dark-card .testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.7;
    position: relative;
    z-index: 2;
}

.testimonial-card.dark-card .testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.text-yellow {
    color: var(--color-primary) !important;
}

.text-white-muted {
    color: rgba(255, 255, 255, 0.6) !important;
}

/* ==========================================================================
   CTA BANNER (CREAM BLOCK)
   ========================================================================== */
.cta-banner {
    background-color: var(--color-accent-cream);
    padding: 130px 0 50px 0;
    color: var(--color-secondary);
    position: relative;
}

.cta-banner::before {
    content: '';
    position: absolute;
    width: 250px;
    height: 250px;
    background-color: hsla(46, 100%, 50%, 0.12);
    border-radius: 50%;
    top: -50px;
    right: -100px;
}

.cta-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    position: relative;
    z-index: 2;
}

@media (min-width: 768px) {
    .cta-container {
        flex-direction: row;
        text-align: left;
    }
}

.cta-content {
    max-width: 600px;
    text-align: center;
}

@media (min-width: 768px) {
    .cta-content {
        text-align: left;
    }
}

.cta-content h2 {
    color: var(--color-secondary);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.cta-content p {
    font-size: 1.1rem;
    opacity: 0.9;
}

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

.btn-secondary-white:hover {
    background-color: transparent;
    color: var(--color-secondary);
    transform: translateY(-2px);
}

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */
.contact-section {
    padding: 80px 0 100px 0;
    background-color: var(--color-accent-cream);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
}

@media (min-width: 992px) {
    .contact-container {
        grid-template-columns: 0.9fr 1.1fr;
    }
}

.contact-info-col {
    max-width: 500px;
}

.contact-lead-text {
    font-size: 1.1rem;
    color: var(--color-text-dark);
    opacity: 0.8;
    margin-bottom: 2.5rem;
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    margin-bottom: 3rem;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    width: 44px;
    height: 44px;
    background-color: var(--color-primary-light);
    color: var(--color-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-text {
    display: flex;
    flex-direction: column;
}

.contact-text strong {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    color: var(--color-secondary);
}

.contact-text span {
    color: var(--color-text-dark);
    opacity: 0.9;
}

.contact-social-links {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-social-links span {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-secondary);
}

.social-icons {
    display: flex;
    gap: 0.75rem;
}

.social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--color-bg-white);
    color: var(--color-text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-border);
}

.social-icons a:hover {
    background-color: var(--color-primary);
    color: var(--color-secondary);
    transform: translateY(-3px);
}

/* Contact Form */
.form-container {
    background-color: var(--color-bg-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
}

.form-container h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.form-container p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--color-secondary);
}

.form-group input, .form-group textarea, .form-group select {
    width: 100%;
    padding: 0.8rem 1.2rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition-fast);
    color: var(--color-text-dark);
    background-color: var(--color-bg-white);
}

.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    outline: none;
    border-color: var(--color-secondary);
    box-shadow: 0 0 0 3px rgba(12, 19, 38, 0.1);
}

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

@media (min-width: 576px) {
    .form-group-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ==========================================================================
   GOOGLE MAPS SECTION
   ========================================================================== */
.maps-section {
    line-height: 0;
}

.map-wrapper iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* ==========================================================================
   FOOTER SECTION
   ========================================================================== */
.main-footer {
    background-color: var(--color-secondary);
    color: hsla(0, 0%, 100%, 0.8);
    padding: 5rem 0 2rem 0;
    border-top: 5px solid var(--color-primary);
}

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

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

.footer-col-about {
    max-width: 320px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.footer-logo img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--color-primary);
    object-fit: cover;
}

.footer-logo span {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--color-bg-white);
}

.footer-col-links h4, .footer-col-hours h4 {
    color: var(--color-bg-white);
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-col-links h4::after, .footer-col-hours h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--color-primary);
    border-radius: var(--radius-full);
}

.footer-col-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-col-links a:hover {
    color: var(--color-primary);
    padding-left: 5px;
}

.footer-col-hours p {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 2rem;
    font-size: 0.9rem;
}

/* ==========================================================================
   SCROLL-DRIVEN INTERACTIVE FLIGHT TRAIL & MASCOT BEE
   ========================================================================== */
.bee-flight-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    pointer-events: none;
    z-index: 80;
    overflow: visible;
}

.bee-flight-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    pointer-events: none;
    overflow: visible;
}

.bee-trail-path {
    fill: none;
    stroke: url(#bee-trail-gradient);
    stroke-width: 3.5px;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 10 14;
    filter: drop-shadow(0 2px 8px rgba(255, 184, 0, 0.5));
    transition: opacity 0.3s ease;
}

.interactive-bee {
    position: absolute;
    top: 0;
    left: 0;
    width: 95px;
    height: 85px;
    z-index: 90;
    pointer-events: auto;
    cursor: pointer;
    transform-origin: 50% 50%;
    will-change: transform;
    user-select: none;
    -webkit-user-select: none;
    -webkit-tap-highlight-color: transparent !important;
    outline: none !important;
    opacity: 1;
    display: block;
}

.interactive-bee:hover {
    filter: drop-shadow(0 8px 20px rgba(255, 184, 0, 0.75));
}

.bee-inner-bob {
    position: relative;
    display: inline-block;
    width: 100%;
    height: 100%;
    will-change: transform;
    -webkit-tap-highlight-color: transparent !important;
    outline: none !important;
    animation: beeFlightBob 2.2s ease-in-out infinite alternate;
}

.bee-mascot-wrapper {
    width: 105px;
    height: 95px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform-origin: center center;
    will-change: transform;
    -webkit-tap-highlight-color: transparent !important;
    outline: none !important;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.bee-mascot-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 6px 14px rgba(21, 42, 85, 0.25));
    pointer-events: none;
    user-select: none;
    -webkit-user-select: none;
    -webkit-tap-highlight-color: transparent !important;
}

@keyframes beeFlightBob {
    0% { transform: translateY(-5px) rotate(-1deg); }
    100% { transform: translateY(5px) rotate(1deg); }
}

/* Joyful Spin when user clicks the bee */
.interactive-bee.spinning .bee-mascot-wrapper {
    animation: beeJoySpin 0.75s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes beeJoySpin {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.25); }
    100% { transform: rotate(360deg) scale(1); }
}

/* Cute Mascot Speech / Sound Bubble */
.bee-speech-bubble {
    position: absolute;
    top: -38px;
    left: 50%;
    transform: translate(-50%, 6px) scale(0.8);
    background: #152A55 !important;
    color: #FFFFFF !important;
    border: 2px solid #FFB800 !important;
    font-size: 0.85rem;
    font-weight: 800;
    font-family: var(--font-heading);
    padding: 5px 14px;
    border-radius: var(--radius-full);
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    box-shadow: 0 8px 24px rgba(21, 42, 85, 0.35);
    transition: opacity 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 100;
}

.bee-speech-bubble::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 6px 5px 0;
    border-style: solid;
    border-color: #152A55 transparent transparent transparent;
    display: block;
    width: 0;
}

.interactive-bee:hover .bee-speech-bubble,
.interactive-bee.show-bubble .bee-speech-bubble {
    opacity: 1;
    transform: translate(-50%, -6px) scale(1);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .interactive-bee {
        width: 75px;
        height: 68px;
    }
    
    .bee-mascot-wrapper {
        width: 75px;
        height: 68px;
    }

    .bee-speech-bubble {
        top: -34px;
        font-size: 0.78rem;
        padding: 4px 12px;
    }

    .bee-trail-path {
        stroke-width: 2.8px;
        stroke-dasharray: 8 11;
    }
}

/* Accessibility: Respect Reduced Motion preferences */
@media (prefers-reduced-motion: reduce) {
    .bee-flight-canvas {
        display: none !important;
    }
}
