:root {
    --purple-brand: #9B72CF;
    --blue-brand: #89C6FF;
    --text-main: #30263D;
    --text-heading: #4A3B7C;
    --text-light: #6b6b6b;
    --yellow-bar: #FCE894;
    --light-bg: #F5EEFF;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Quicksand', sans-serif;
    background-color: #ffffff;
    overflow-x: hidden;
}

/* ==================================================
   ANIMAÇÕES DE SCROLL SUAVE
   ================================================== */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-up-centered {
    opacity: 0;
    transform: translate(-50%, 40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-up-centered.visible {
    opacity: 1;
    transform: translate(-50%, 0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* ==================================================
   MENU NUVEM ESTILIZADO
   ================================================== */
.nav-hero {
    position: fixed;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    z-index: 9999;
}

.nav-cloud-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 60px;
    z-index: -1;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

.nav-cloud-bg::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 15%;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
}

.nav-cloud-bg::after {
    content: '';
    position: absolute;
    top: -35px;
    left: 45%;
    width: 110px;
    height: 110px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
}

.nav-cloud-bump {
    position: absolute;
    top: -25px;
    right: 20%;
    width: 90px;
    height: 90px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    z-index: -1;
}

.nav-logo {
    font-family: 'Fredoka', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-main);
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 700;
    font-size: 15px;
    transition: color 0.3s ease;
}

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

.btn-enroll {
    background-color: var(--purple-brand);
    color: #ffffff;
    text-decoration: none;
    padding: 14px 32px;
    border-radius: 40px;
    font-weight: 700;
    font-size: 15px;
    transition: transform 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 10;
}

.btn-enroll:hover {
    background-color: var(--purple-brand);
    transform: translateY(-2px);
}

.lottie-butterfly {
    position: absolute;
    top: -35px;
    right: -25px;
    width: 75px;
    height: 75px;
    pointer-events: none;
}

/* ==================================================
   HERO SECTION COM DEGRADÊ, IMAGENS E TREM
   ================================================== */
.hero-section {
    position: relative;
    padding: 240px 20px 180px;
    background: linear-gradient(180deg, var(--light-bg) 0%, #FFFFFF 100%);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 15%;
    left: 10%;
    width: 400px;
    height: 300px;
    background: radial-gradient(circle, rgba(230,244,255,0.8) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
    z-index: 1;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 25%;
    right: 15%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(253,235,244,0.8) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 20; /* acima do .train-track (15): o trenzinho nunca cobre o botão */
    max-width: 800px;
}

.hero-title {
    font-family: 'Fredoka', sans-serif;
    font-weight: 700;
    font-size: clamp(40px, 6vw, 68px);
    color: var(--text-main);
    line-height: 1.1;
    margin: 0 0 25px 0;
    letter-spacing: -1.5px;
}

.hero-desc {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0 auto 40px auto;
    max-width: 650px;
    font-weight: 500;
}

.float-img {
    position: absolute;
    object-fit: cover;
    z-index: 5;
    animation: floatAnim 6s ease-in-out infinite;
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

.img-1 {
    top: 15%; left: 8%; width: 160px; height: 160px;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; animation-delay: 0s;
}
.img-2 {
    top: 25%; right: 10%; width: 140px; height: 140px;
    border-radius: 60% 40% 30% 70% / 50% 60% 40% 50%; animation-delay: 1.5s;
}
.img-3 {
    bottom: 25%; left: 12%; width: 130px; height: 130px;
    border-radius: 50% 50% 30% 70% / 60% 40% 60% 40%; animation-delay: 0.7s;
}
.img-4 {
    bottom: 30%; right: 15%; width: 150px; height: 150px;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; animation-delay: 2.2s;
}

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

.train-track {
    position: absolute;
    bottom: 45px;
    left: 0;
    width: 100%;
    height: 100px;
    z-index: 15;
    pointer-events: none;
}

.train-car {
    position: absolute;
    bottom: 0;
    left: -250px;
    width: 200px;
    height: 200px;
    animation: tremAtravessa 18s linear infinite;
}

@keyframes tremAtravessa {
    0% { transform: translateX(-10vw); }
    100% { transform: translateX(110vw); }
}

.custom-shape-divider-bottom {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
    z-index: 20;
}

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

.custom-shape-divider-bottom .shape-fill {
    fill: var(--yellow-bar);
}

/* ==================================================
   BARRA DE ESTATÍSTICAS
   ================================================== */
.stats-container {
    background-color: var(--yellow-bar);
    padding: 30px 20px 60px;
    position: relative;
    z-index: 15;
    margin-top: 0;
}

.custom-shape-divider-stats {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.custom-shape-divider-stats svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 50px;
}

.custom-shape-divider-stats .shape-fill {
    fill: #ffffff;
}

.stats-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.stats-intro h3 {
    font-family: 'Fredoka', sans-serif;
    font-size: 24px;
    color: var(--text-main);
    margin: 0 0 5px 0;
}

.stats-intro p {
    margin: 0;
    color: var(--text-light);
    font-size: 15px;
    font-weight: 700;
}

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

.stat-box h2 {
    font-family: 'Fredoka', sans-serif;
    font-size: 42px;
    color: var(--text-main);
    margin: 0;
    line-height: 1;
}

.stat-box p {
    margin: 5px 0 0 0;
    color: var(--text-main);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ==================================================
   SEÇÃO DRA. LARA (SOBRE)
   ================================================== */
.doctor-section {
    padding: 100px 20px 100px;
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 80px;
    position: relative;
    z-index: 10;
}

.doctor-image-wrapper {
    flex: 1;
    position: relative;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.doctor-img-main {
    width: 100%;
    max-width: 480px;
    position: relative;
    z-index: 2;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
}

.doctor-content-box {
    flex: 1;
}

.doctor-content-box h2 {
    font-family: 'Fredoka', sans-serif;
    font-size: clamp(32px, 4vw, 44px);
    color: var(--text-main);
    line-height: 1.1;
    margin: 0 0 20px 0;
    letter-spacing: -1px;
    position: relative;
    z-index: 10;
}

.doctor-content-box p {
    font-size: 17px;
    color: var(--text-light);
    margin: 0 0 30px 0;
    line-height: 1.7;
    position: relative;
    z-index: 10;
}

.doctor-action-area {
    margin-top: 30px;
}

.box-botao-lego {
    position: relative;
    display: inline-block;
    z-index: 10;
}

.lottie-lego {
    position: absolute;
    top: -220px;
    left: 100%;
    margin-left: -50px; 
    width: 400px; 
    height: 400px;
    z-index: -1; 
    mix-blend-mode: multiply;
    pointer-events: none;
}

/* ==================================================
   SEÇÃO CARROSSEL ESTRATÉGICO (SITE LIGHT)
   ================================================== */
.light-carousel-section {
    padding: 60px 20px 100px;
    background-color: #ffffff;
}

.carousel-container {
    max-width: 1100px;
    margin: 0 auto;
    background-color: var(--light-bg);
    border-radius: 40px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.03);
}

.carousel-track-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    display: none;
    align-items: center;
    gap: 60px;
    padding: 60px;
    min-height: 500px;
}

.carousel-slide.active {
    display: flex;
    animation: fadeEffect 0.6s ease-in-out;
}

@keyframes fadeEffect {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.carousel-image-area {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel-image-area img {
    width: 100%;
    max-width: 450px;
    height: auto;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.carousel-content-area {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.carousel-content-area h2 {
    font-family: 'Fredoka', sans-serif;
    font-size: clamp(28px, 3.5vw, 38px);
    color: var(--text-main);
    margin: 0 0 20px 0;
    line-height: 1.2;
}

.carousel-content-area p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0 0 30px 0;
}

.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 60px 40px 60px;
    background-color: var(--light-bg);
}

.carousel-nav-buttons {
    display: flex;
    gap: 15px;
}

.carousel-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #ffffff;
    border: none;
    color: var(--text-main);
    font-size: 18px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.2s ease, background-color 0.2s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.carousel-arrow:hover {
    background-color: var(--purple-brand);
    color: #ffffff;
    transform: scale(1.05);
}

.carousel-dots {
    display: flex;
    gap: 10px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(155, 114, 207, 0.3);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.carousel-dot.active {
    background-color: var(--purple-brand);
    transform: scale(1.2);
    width: 24px;
    border-radius: 6px;
}

/* ==================================================
   QUALITIES SECTION
   ================================================== */
.qualities-section {
    padding: 100px 20px;
    background-color: #ffffff;
    text-align: center;
    position: relative;
}

.section-heading {
    font-family: 'Fredoka', sans-serif;
    font-size: clamp(32px, 4vw, 42px);
    color: var(--text-main);
    line-height: 1.2;
    margin: 0 auto 60px auto;
    letter-spacing: -1px;
    max-width: 600px;
}

.qualities-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.quality-card {
    padding: 40px 30px;
    border-radius: 30px;
    text-align: center;
    transition: transform 0.3s ease;
}

.quality-card:hover {
    transform: translateY(-5px);
}

.card-blue { background-color: #E6F4FF; }
.card-pink { background-color: #FDE8F2; }
.card-yellow { background-color: #FFF9D2; }

.quality-icon {
    width: 60px;
    height: 60px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px auto;
    font-size: 24px;
}

.quality-card h3 {
    font-family: 'Fredoka', sans-serif;
    font-size: 22px;
    color: var(--text-main);
    margin: 0 0 15px 0;
}

.quality-card p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* ==================================================
   EXPERIENCES SECTION
   ================================================== */
.experiences-section {
    padding: 100px 20px;
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.experiences-text {
    flex: 0 0 35%;
}

.experiences-text h2 {
    font-family: 'Fredoka', sans-serif;
    font-size: 36px;
    color: var(--text-main);
    line-height: 1.1;
    margin: 0 0 15px 0;
    letter-spacing: -1px;
}

.experiences-text p {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.6;
}

.experiences-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px 15px;
}

.exp-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.exp-icon {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
}

.bg-pink { background-color: #FDE8F2; color: #D65A92; }
.bg-yellow { background-color: #FFF9D2; color: #D4A017; }
.bg-blue { background-color: #E6F4FF; color: #4A90E2; }
.bg-purple { background-color: #F5EEFF; color: var(--purple-brand); }

.exp-item span {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-main);
}

/* ==================================================
   PROGRAMS SECTION
   ================================================== */
.programs-section {
    padding: 80px 20px 120px;
    text-align: center;
    max-width: 1100px;
    margin: 0 auto;
}

.programs-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 12px 30px;
    border-radius: 40px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    border: none;
    font-family: 'Quicksand', sans-serif;
}

.tab-active {
    background-color: var(--purple-brand);
    color: white;
}

.tab-inactive {
    background-color: #E6F4FF;
    color: var(--text-main);
}

.program-card {
    background-color: var(--light-bg);
    border-radius: 40px;
    padding: 50px;
    display: flex;
    align-items: center;
    gap: 60px;
    text-align: left;
}

.program-image {
    flex: 1;
}

.program-image img {
    width: 100%;
    border-radius: 30px;
    object-fit: cover;
}

.program-details {
    flex: 1;
}

.program-details h3 {
    font-family: 'Fredoka', sans-serif;
    font-size: 32px;
    color: var(--text-main);
    margin: 0 0 15px 0;
}

.program-details p {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.6;
    margin: 0 0 30px 0;
}

.program-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.info-item h4 {
    font-family: 'Fredoka', sans-serif;
    font-size: 14px;
    color: var(--text-light);
    margin: 0 0 5px 0;
    text-transform: uppercase;
}

.info-item p {
    font-weight: 700;
    color: var(--text-main);
    font-size: 16px;
    margin: 0;
}

/* ==================================================
   TESTIMONIALS SECTION
   ================================================== */
.testimonials-section {
    padding: 100px 20px;
    background-color: #FDFDFD;
    text-align: center;
}

.testimonials-section h2 {
    font-family: 'Fredoka', sans-serif;
    font-size: clamp(32px, 4vw, 42px);
    color: var(--text-main);
    margin: 0 0 60px 0;
}

.testi-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.testi-card {
    background: #ffffff;
    border: 1px solid #f0f0f0;
    border-radius: 20px;
    padding: 30px;
    text-align: left;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

.stars {
    color: #F5A623;
    font-size: 14px;
    margin-bottom: 15px;
}

.testi-quote {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 25px;
    font-style: italic;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #E6F4FF;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    color: var(--blue-brand);
    font-size: 16px;
}

.author-info h4 {
    font-family: 'Fredoka', sans-serif;
    margin: 0;
    font-size: 16px;
    color: var(--text-main);
}

.author-info span {
    font-size: 12px;
    color: var(--text-light);
}

/* ==================================================
   BLOG SECTION
   ================================================== */
.blog-section {
    padding: 100px 20px;
    background-color: var(--light-bg);
    border-radius: 50px 50px 0 0;
    text-align: center;
}

.blog-section h2 {
    font-family: 'Fredoka', sans-serif;
    font-size: clamp(32px, 4vw, 42px);
    color: var(--text-main);
    margin: 0 0 60px 0;
}

.blog-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background: #ffffff;
    border-radius: 30px;
    overflow: hidden;
    text-align: left;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

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

.blog-content {
    padding: 30px;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.blog-category {
    background-color: #FDE8F2;
    color: #D65A92;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.blog-date {
    font-size: 13px;
    color: var(--text-light);
    font-weight: 700;
}

.blog-content h3 {
    font-family: 'Fredoka', sans-serif;
    font-size: 20px;
    color: var(--text-main);
    margin: 0 0 15px 0;
    line-height: 1.3;
}

.blog-content p {
    font-size: 15px;
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

/* ==================================================
   BOTTOM CTA SECTION
   ================================================== */
.bottom-cta-section {
    padding: 0 20px 100px;
    background-color: var(--light-bg);
}

.cta-container {
    max-width: 1100px;
    margin: 0 auto;
    background-color: #FDE8F2;
    border-radius: 40px;
    padding: 60px;
    display: flex;
    align-items: center;
    gap: 50px;
    position: relative;
    overflow: hidden;
}

.cta-content {
    flex: 1;
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-family: 'Fredoka', sans-serif;
    font-size: clamp(32px, 4vw, 46px);
    color: var(--text-main);
    margin: 0 0 20px 0;
    line-height: 1.1;
}

.cta-content p {
    font-size: 16px;
    color: var(--text-light);
    margin: 0 0 30px 0;
}

.cta-image {
    flex: 1;
    text-align: right;
    position: relative;
    z-index: 2;
}

.cta-image img {
    max-width: 100%;
    border-radius: 20px;
}

/* ==================================================
   FOOTER ROBUSTO COM LOTTIE GIGANTE
   ================================================== */
.footer-nurturing {
    background-color: #E6F4FF;
    padding: 80px 20px 40px;
    border-top-left-radius: 60px;
    border-top-right-radius: 60px;
}

.footer-top-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h4 {
    font-family: 'Fredoka', sans-serif;
    font-size: 18px;
    color: var(--text-main);
    margin: 0 0 20px 0;
}

.footer-col p, .footer-col a {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.8;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.footer-col a:hover {
    color: var(--purple-brand);
}

.footer-contact-info p {
    margin: 0 0 5px 0;
    font-weight: 700;
    color: var(--text-main);
}

.footer-bottom {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
    border-top: 1px solid rgba(0,0,0,0.05);
    padding-top: 50px;
    position: relative;
}

.footer-lottie-container {
    display: flex;
    justify-content: center;
    margin-bottom: -150px; 
    position: relative;
    z-index: 1;
}

.footer-lottie-container lottie-player {
    width: 480px; 
    height: 480px;
}

.footer-big-logo {
    font-family: 'Fredoka', sans-serif;
    font-size: clamp(50px, 10vw, 130px);
    font-weight: 700;
    color: var(--text-main);
    line-height: 0.8;
    margin-bottom: 20px;
    letter-spacing: -2px;
    position: relative;
    z-index: 2; 
}

.footer-big-logo span {
    color: var(--purple-brand);
}

.footer-copyright {
    color: var(--text-light);
    font-size: 14px;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

/* ==================================================
   COR DOS TÍTULOS
   Os títulos em Fredoka 700 ficam muito pesados em preto
   sólido; usamos um roxo mais escuro (--text-heading) em vez
   de preto para aliviar o peso mantendo o estilo brincalhão.
   (a versão anterior usava uma borda/stroke no texto, mas
   isso duplicava o contorno das letras — removido.)
   ================================================== */
.hero-title,
.nav-logo,
.footer-big-logo,
.section-heading,
.doctor-content-box h2,
.experiences-text h2,
.carousel-content-area h2,
.cta-content h2,
.testimonials-section h2,
.blog-section h2,
.stat-box h2 {
    color: var(--text-heading);
}

/* ==================================================
   RESPONSIVIDADE GERAL
   ================================================== */
@media (max-width: 991px) {
    .nav-links { display: none; }
    .img-1, .img-2, .img-3, .img-4 { display: none; }
    .hero-title { font-size: 48px; }
    .hero-section { padding: 180px 20px 120px; }
    .stats-grid { justify-content: center; text-align: center; }
    .stats-intro { width: 100%; margin-bottom: 20px; }
    .nav-cloud-bg::before, .nav-cloud-bg::after, .nav-cloud-bump { display: none; }
    
    .doctor-section { flex-direction: column; text-align: center; gap: 50px; padding: 60px 20px; }
    .box-botao-lego { display: block; z-index: 1; }
    .lottie-lego { 
        position: relative; 
        left: auto; 
        top: auto;
        margin-left: 0; 
        margin-top: -60px;
        z-index: 1;
    }

    .carousel-slide {
        flex-direction: column;
        padding: 40px 30px;
        text-align: center;
        gap: 30px;
    }
    .carousel-image-area img {
        max-width: 350px;
    }
    .carousel-controls {
        flex-direction: column-reverse;
        gap: 25px;
        padding: 0 30px 40px 30px;
    }
    
    .qualities-grid { grid-template-columns: repeat(2, 1fr); }
    .experiences-section { flex-direction: column; text-align: center; }
    .experiences-grid { grid-template-columns: repeat(2, 1fr); }
    .program-card { flex-direction: column; padding: 30px; gap: 30px; }
    .testi-grid { grid-template-columns: repeat(2, 1fr); }
    .blog-grid { grid-template-columns: 1fr; }
    .cta-container { flex-direction: column; text-align: center; padding: 40px 20px; }
    .cta-image { text-align: center; margin-top: 30px; }
    .footer-top-grid { grid-template-columns: repeat(2, 1fr); }
    
    .footer-lottie-container lottie-player { width: 250px; height: 250px; }
    .footer-lottie-container { margin-bottom: -60px; }
}

@media (max-width: 768px) {
    .qualities-grid { grid-template-columns: 1fr; }
    .experiences-grid { grid-template-columns: 1fr; }
    .program-info-grid { grid-template-columns: 1fr; }
    .testi-grid { grid-template-columns: 1fr; }
    .footer-top-grid { grid-template-columns: 1fr; text-align: center; }
}

@media (max-width: 480px) {
    /* Menu: nome da Dra. e botão em uma linha só, sem quebrar */
    .nav-hero {
        padding: 10px 18px;
        top: 16px;
    }
    .nav-logo {
        font-size: 16px;
        white-space: nowrap;
    }
    .btn-enroll {
        padding: 10px 18px;
        font-size: 12px;
        white-space: nowrap;
    }
    .lottie-butterfly {
        width: 46px;
        height: 46px;
        top: -22px;
        right: -14px;
    }

    /* Título menor e mais suave, com menos espaço no topo */
    .hero-section {
        padding: 110px 20px 190px;
    }
    .hero-title {
        font-size: 30px;
        line-height: 1.2;
        letter-spacing: -0.5px;
        margin-bottom: 16px;
    }
    .hero-desc {
        font-size: 14px;
        margin-bottom: 25px;
    }

    /* Trenzinho com espaço próprio abaixo do botão, sem espremer */
    .train-track {
        bottom: 25px;
        height: 90px;
    }
    .train-car {
        width: 140px;
        height: 140px;
    }
}
