:root {
    --fundo: #fbf7ef;
    --creme: #f1e6d6;
    --verde: #6f7f68;
    --verde-escuro: #3f4d3d;
    --marrom: #7b5f49;
    --texto: #2f2b27;
    --branco: #ffffff;
    --sombra: 0 18px 45px rgba(47, 43, 39, 0.10);
    --raio: 22px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 96px;
}

body {
    font-family: "Darker Grotesque", Arial, sans-serif;
    background:
        radial-gradient(circle at 10% 0%, rgba(111,127,104,0.12), transparent 28%),
        radial-gradient(circle at 90% 12%, rgba(123,95,73,0.10), transparent 26%),
        var(--fundo);
    color: var(--texto);
    font-size: 22px;
    line-height: 1.55;
}

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

a {
    color: inherit;
}

.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    width: min(1180px, 94%);
    margin: 14px auto 0;
    padding: 12px 14px 12px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    background: rgba(255,255,255,0.78);
    border: 1px solid rgba(63,77,61,0.12);
    border-radius: 999px;
    box-shadow: 0 16px 40px rgba(47,43,39,0.08);
    backdrop-filter: blur(12px);
}

.nav-brand {
    font-family: "Playfair Display", Georgia, serif;
    color: var(--verde-escuro);
    font-weight: 700;
    text-decoration: none;
    font-size: 25px;
    white-space: nowrap;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 18px;
}

.nav-links a {
    text-decoration: none;
    font-weight: 700;
    color: #4c463f;
    font-size: 18px;
}

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

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--verde-escuro);
    color: white;
    text-decoration: none;
    padding: 10px 18px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 18px;
}

.container {
    width: min(1080px, 92%);
    margin: 0 auto;
    padding: 82px 0;
}

.hero {
    position: relative;
    overflow: hidden;
    min-height: calc(88vh - 80px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 150px min(9vw, 120px) 95px;
    margin-top: -72px;
    background:
        linear-gradient(115deg, rgba(251,247,239,0.98) 0%, rgba(251,247,239,0.92) 55%, rgba(241,230,214,0.70) 100%),
        radial-gradient(circle at top right, rgba(111,127,104,0.32), transparent 36%),
        var(--creme);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 28px;
    border: 1px solid rgba(63,77,61,0.12);
    border-radius: 34px;
    pointer-events: none;
}

.hero::after {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    right: -130px;
    bottom: -120px;
    background: rgba(111,127,104,0.12);
    border-radius: 50%;
    filter: blur(2px);
}

.hero > * {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.72);
    border: 1px solid rgba(63,77,61,0.14);
    color: var(--verde-escuro);
    padding: 8px 15px;
    border-radius: 999px;
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 18px;
    box-shadow: 0 10px 25px rgba(47, 43, 39, 0.07);
    backdrop-filter: blur(8px);
}

.crp {
    color: var(--verde-escuro);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 18px;
    margin-bottom: 12px;
}

h1, h2, h3 {
    color: var(--verde-escuro);
    line-height: 1.08;
}

h1, h2 {
    font-family: "Playfair Display", Georgia, serif;
}

h1 {
    max-width: 900px;
    font-size: clamp(48px, 7vw, 88px);
    margin-bottom: 18px;
}

h2 {
    font-size: clamp(36px, 5vw, 56px);
    margin-bottom: 26px;
}

h3 {
    font-size: 29px;
    margin-bottom: 10px;
}

.section-kicker {
    color: var(--marrom);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 17px;
    margin-bottom: 10px;
}

.section-intro {
    text-align: center;
    max-width: 740px;
    margin: -10px auto 34px;
    color: #4c463f;
    font-size: 25px;
}

.hero-subtitle {
    max-width: 760px;
    font-size: clamp(25px, 3vw, 34px);
    color: #4c463f;
    margin-bottom: 32px;
}

.hero-actions,
.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    background: var(--verde-escuro);
    color: var(--branco);
    text-decoration: none;
    border: 2px solid var(--verde-escuro);
    padding: 13px 28px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 20px;
    cursor: pointer;
    letter-spacing: 0.01em;
    transition: transform .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
    box-shadow: 0 10px 24px rgba(63, 77, 61, 0.18);
}

.btn:hover {
    transform: translateY(-2px);
    background: #52624f;
    box-shadow: 0 15px 30px rgba(63, 77, 61, 0.24);
}

.btn-secondary {
    background: rgba(255,255,255,0.64);
    color: var(--verde-escuro);
    border-color: rgba(63,77,61,0.28);
    box-shadow: 0 10px 22px rgba(47,43,39,0.07);
    backdrop-filter: blur(8px);
}

.btn-secondary:hover {
    background: var(--verde-escuro);
    color: var(--branco);
}

.btn-outline {
    background: transparent;
    color: var(--verde-escuro);
    margin-top: 18px;
}

.btn-outline:hover {
    background: var(--verde-escuro);
    color: var(--branco);
}

.premium-highlights {
    width: min(980px, 90%);
    margin: -42px auto 0;
    position: relative;
    z-index: 4;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.highlight-card {
    background: rgba(255,255,255,0.84);
    border: 1px solid rgba(63,77,61,0.12);
    border-radius: 20px;
    padding: 20px 22px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--verde-escuro);
    font-weight: 700;
    box-shadow: var(--sombra);
    backdrop-filter: blur(10px);
}

.highlight-card i,
.service-card i {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(111,127,104,0.14);
    color: var(--verde-escuro);
}

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

.sobre-grid,
.contato-grid,
.localizacao-grid {
    display: grid;
    grid-template-columns: 1fr minmax(280px, 380px);
    gap: 46px;
    align-items: center;
    background: rgba(255,255,255,0.36);
    border: 1px solid rgba(63,77,61,0.08);
    border-radius: 34px;
    padding: clamp(24px, 4vw, 42px);
    box-shadow: 0 20px 60px rgba(47,43,39,0.06);
}

.contato-grid,
.localizacao-grid {
    grid-template-columns: 1.1fr 0.9fr;
}

.img-card {
    position: relative;
    width: 100%;
    max-width: 380px;
    margin-left: auto;
    background: rgba(255,255,255,0.7);
    border-radius: 28px;
    overflow: hidden;
    border: 10px solid rgba(255,255,255,0.80);
    box-shadow: 0 24px 55px rgba(47,43,39,0.16);
}

.img-card::after {
    content: "";
    position: absolute;
    inset: 14px;
    border: 1px solid rgba(255,255,255,0.50);
    border-radius: 20px;
    pointer-events: none;
}

.img-psicologa {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: center 28%;
    image-rendering: auto;
    transform: scale(1.01);
}

.bg-creme {
    background: rgba(241,230,214,0.72);
}

.hidden-text {
    display: none;
    margin-top: 24px;
    padding: 30px;
    background: var(--branco);
    border-radius: var(--raio);
    box-shadow: var(--sombra);
}

.hidden-text.ativo {
    display: block;
}

.lista-beneficios {
    list-style: none;
    display: grid;
    gap: 16px;
}

.lista-beneficios li {
    position: relative;
    background: rgba(255,255,255,0.72);
    padding: 18px 22px 18px 54px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(47,43,39,0.04);
}

.lista-beneficios li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 18px;
    top: 20px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(111,127,104,0.18);
    color: var(--verde-escuro);
    font-size: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.grid-beneficios {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-grid,
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.service-card,
.step-card,
.contact-panel {
    background: rgba(255,255,255,0.82);
    border: 1px solid rgba(63,77,61,0.10);
    border-radius: 24px;
    padding: 26px;
    box-shadow: var(--sombra);
}

.service-card i {
    margin-bottom: 18px;
    font-size: 18px;
}

.service-card p,
.step-card p {
    color: #4c463f;
}

.steps-grid {
    grid-template-columns: repeat(4, 1fr);
}

.step-card span {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--verde-escuro);
    color: white;
    font-weight: 700;
    margin-bottom: 16px;
}

.center-action {
    text-align: center;
    margin-top: 34px;
}

details {
    background: var(--branco);
    border-radius: var(--raio);
    margin-bottom: 18px;
    box-shadow: var(--sombra);
    overflow: hidden;
    border: 1px solid rgba(63,77,61,0.10);
}

summary {
    cursor: pointer;
    padding: 24px 28px;
    font-weight: 700;
    color: var(--verde-escuro);
    font-size: 25px;
    list-style: none;
}

summary::-webkit-details-marker {
    display: none;
}

summary::after {
    content: "\f107";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    float: right;
    color: var(--verde);
}

details[open] summary::after {
    content: "\f106";
}

details p {
    padding: 0 28px 26px;
}

.img-consultorio {
    width: 100%;
    min-height: 360px;
    object-fit: cover;
    border-radius: var(--raio);
    background: var(--creme);
    border: 10px solid rgba(255,255,255,0.78);
    box-shadow: 0 24px 55px rgba(47,43,39,0.14);
}

.mapa-box {
    margin-top: 42px;
    background: var(--branco);
    border-radius: var(--raio);
    padding: 20px;
    box-shadow: var(--sombra);
    overflow: hidden;
    border: 1px solid rgba(63,77,61,0.10);
}

.mapa-box h2 {
    margin-top: 6px;
}

.mapa-box iframe {
    border-radius: 18px;
}

.contato-icone {
    color: var(--verde-escuro);
    width: 26px;
    display: inline-block;
    text-align: center;
}

.contact-panel h3 {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 34px;
}

.contact-panel p {
    font-size: 26px;
    margin-bottom: 22px;
    color: #4c463f;
}

footer {
    background: linear-gradient(135deg, rgba(63,77,61,1), rgba(47,64,47,1));
    color: var(--branco);
    font-size: 18px;
    padding: 52px 0 34px;
}

.footer-grid {
    width: min(1080px, 92%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 34px;
    padding-bottom: 34px;
    border-bottom: 1px solid rgba(255,255,255,0.18);
}

.footer-grid h3 {
    color: white;
    margin-bottom: 12px;
    font-family: "Playfair Display", Georgia, serif;
}

.footer-grid a {
    display: block;
    text-decoration: none;
    margin-bottom: 8px;
    color: rgba(255,255,255,0.86);
}

.footer-grid a:hover {
    color: white;
}

.footer-warning {
    width: min(1080px, 92%);
    margin: 24px auto 0;
    color: rgba(255,255,255,0.88);
}

.footer-warning p + p {
    margin-top: 16px;
}

.whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 120;
    background: #2f6f4e;
    color: white;
    text-decoration: none;
    padding: 15px 22px;
    border-radius: 999px;
    font-weight: 700;
    box-shadow: 0 14px 32px rgba(0,0,0,0.25);
    transition: transform .2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border: 1px solid rgba(255,255,255,0.26);
}

.whatsapp-float:hover {
    transform: scale(1.04);
}

@media (max-width: 940px) {
    .nav-links {
        display: none;
    }

    .steps-grid,
    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 780px) {
    html {
        scroll-padding-top: 84px;
    }

    body {
        font-size: 20px;
    }

    .navbar {
        width: 94%;
        margin-top: 10px;
        border-radius: 24px;
    }

    .nav-brand {
        font-size: 22px;
    }

    .nav-cta {
        font-size: 0;
        width: 46px;
        height: 46px;
        justify-content: center;
        padding: 0;
    }

    .nav-cta i {
        font-size: 20px;
    }

    .hero {
        min-height: auto;
        margin-top: -68px;
        padding: 138px 6% 72px;
    }

    .hero::before {
        inset: 14px;
        border-radius: 24px;
    }

    .container {
        padding: 60px 0;
    }

    h1 {
        font-size: clamp(42px, 12vw, 58px);
    }

    .premium-highlights {
        margin-top: -26px;
        grid-template-columns: 1fr;
    }

    .highlight-card {
        padding: 16px 18px;
    }

    .grid-beneficios,
    .contato-grid,
    .sobre-grid,
    .localizacao-grid,
    .service-grid,
    .steps-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .sobre-grid,
    .contato-grid,
    .localizacao-grid {
        padding: 22px;
        border-radius: 26px;
    }

    .img-card {
        max-width: 360px;
        margin: 0 auto;
        border-width: 7px;
    }

    .hero-actions,
    .contact-actions {
        width: 100%;
    }

    .hero-actions .btn,
    .contact-actions .btn,
    .center-action .btn {
        width: 100%;
    }

    .whatsapp-float {
        left: 14px;
        right: 14px;
        bottom: 14px;
        text-align: center;
    }

    footer {
        padding-bottom: 86px;
    }
}

/* ===== AJUSTES: ONLINE ONLY + CORREÇÕES ===== */

.footer-grid,
.footer-warning,
footer {
    font-size: 15px;
}

.footer-grid h3 {
    font-size: 22px;
}

.footer-warning {
    line-height: 1.45;
}

/* Garante que o texto aberto no "Saiba mais" empurre o layout,
   em vez de aparecer por cima da foto. */
#sobre {
    overflow: visible;
}

.sobre-grid {
    position: relative;
    z-index: 1;
    margin-bottom: 24px;
}

.hidden-text {
    position: relative;
    z-index: 2;
    width: 100%;
    clear: both;
}

.hidden-text.ativo {
    display: block;
    animation: abrirTexto .25s ease;
}

@keyframes abrirTexto {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 780px) {
    .footer-grid,
    .footer-warning,
    footer {
        font-size: 14px;
    }

    .footer-grid h3 {
        font-size: 20px;
    }
}


/* ===== HERO COM FOTO DE ENTRADA ===== */
.hero-layout {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(340px, 470px);
    gap: 38px;
    align-items: center;
}

.hero-copy {
    opacity: 0;
    transform: translateY(22px);
    animation: heroReveal 0.85s ease forwards;
}

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

.hero-photo-card {
    position: relative;
    width: min(100%, 470px);
    padding: 18px;
    border-radius: 34px;
    background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(248,244,237,0.92));
    border: 1px solid rgba(63,77,61,0.12);
    box-shadow: 0 24px 60px rgba(47,43,39,0.15);
    opacity: 0;
    transform: translateY(26px) scale(0.98);
    animation: heroReveal 0.95s ease 0.18s forwards;
}

.hero-photo-card::before {
    content: "";
    position: absolute;
    inset: 10px;
    border-radius: 26px;
    border: 1px solid rgba(63,77,61,0.08);
    pointer-events: none;
}

.hero-photo {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 26px;
}

.hero-photo-caption {
    position: absolute;
    left: 30px;
    right: 30px;
    bottom: 28px;
    padding: 14px 16px;
    border-radius: 20px;
    background: rgba(255,255,255,0.82);
    border: 1px solid rgba(63,77,61,0.08);
    box-shadow: 0 12px 28px rgba(47,43,39,0.10);
    backdrop-filter: blur(8px);
    display: grid;
    gap: 2px;
}

.hero-photo-caption strong {
    color: var(--verde-escuro);
    font-size: 24px;
    line-height: 1.1;
}

.hero-photo-caption span {
    color: #5d554d;
    font-size: 19px;
    line-height: 1.25;
}

#texto-sobre {
    scroll-margin-top: 110px;
    outline: none;
}

.hidden-text.ativo {
    display: block;
    animation: revealText .25s ease;
}

@keyframes heroReveal {
    from {
        opacity: 0;
        transform: translateY(22px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes revealText {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


@media (max-width: 980px) {
    .hero-layout {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        order: -1;
        margin-top: 8px;
    }

    .hero-photo-card {
        width: min(100%, 420px);
    }
}

@media (max-width: 780px) {
    .hero {
        padding-top: 128px;
    }

    .hero-layout {
        gap: 26px;
    }

    .hero-photo-card {
        padding: 12px;
        border-radius: 26px;
    }

    .hero-photo {
        border-radius: 20px;
    }

    .hero-photo-caption {
        left: 20px;
        right: 20px;
        bottom: 18px;
        padding: 12px 14px;
    }

    .hero-photo-caption strong {
        font-size: 21px;
    }

    .hero-photo-caption span {
        font-size: 17px;
    }

    #texto-sobre {
        scroll-margin-top: 92px;
    }
}


@media (max-width: 980px) {
    .hero-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .hero-visual {
        justify-content: center;
        order: -1;
    }

    .hero-photo-card {
        width: min(100%, 520px);
    }

    .hero-photo {
        max-height: none;
    }
}

@media (max-width: 780px) {
    .hero-photo-card {
        width: min(100%, 420px);
    }

    .hero-photo-caption {
        left: 10px;
        right: 10px;
        bottom: 10px;
        max-width: none;
        padding: 10px 12px;
    }
}


/* ===== AJUSTE FINAL: FOTO MAIS ALTA E MAIS BONITA ===== */

.hero-layout {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 560px);
    gap: 34px;
    align-items: center;
}

.hero-visual {
    justify-content: center;
    align-items: center;
    transform: translateY(-28px);
}

.hero-photo-card {
    width: min(100%, 560px);
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    border-radius: 0;
    opacity: 0;
    transform: translateY(18px) scale(0.98);
    animation: heroRevealFinal 1.15s ease 0.55s forwards;
}

.hero-photo-card::before,
.hero-photo-caption {
    display: none !important;
}

.hero-photo {
    width: 100%;
    max-height: 640px;
    object-fit: contain;
    object-position: center;
    border-radius: 0;
    filter: drop-shadow(0 20px 34px rgba(47,43,39,0.11));
}

@keyframes heroRevealFinal {
    from {
        opacity: 0;
        transform: translateY(18px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (max-width: 980px) {
    .hero-layout {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .hero-visual {
        order: -1;
        transform: translateY(-10px);
    }

    .hero-photo-card {
        width: min(100%, 430px);
    }

    .hero-photo {
        max-height: 480px;
    }
}

@media (max-width: 780px) {
    .hero {
        padding-top: 116px;
    }

    .hero-visual {
        transform: translateY(-4px);
    }

    .hero-photo-card {
        width: min(100%, 360px);
    }

    .hero-photo {
        max-height: 390px;
    }
}


/* ===== MOLDURA SUAVE NA FOTO DO TOPO ===== */
.hero-photo-card {
    width: min(100%, 560px);
    padding: 16px;
    background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(247,241,233,0.95));
    border: 1px solid rgba(63,77,61,0.12);
    box-shadow: 0 24px 55px rgba(47,43,39,0.14);
    border-radius: 32px;
    position: relative;
    overflow: hidden;
}

.hero-photo-card::before {
    content: "";
    position: absolute;
    inset: 10px;
    border-radius: 24px;
    border: 1px solid rgba(63,77,61,0.08);
    pointer-events: none;
    display: block !important;
}

.hero-photo {
    border-radius: 24px;
    background: #ffffff;
}

@media (max-width: 980px) {
    .hero-photo-card {
        width: min(100%, 430px);
        padding: 12px;
        border-radius: 26px;
    }

    .hero-photo-card::before {
        inset: 8px;
        border-radius: 20px;
    }

    .hero-photo {
        border-radius: 20px;
    }
}

@media (max-width: 780px) {
    .hero-photo-card {
        width: min(100%, 360px);
        padding: 10px;
        border-radius: 22px;
    }

    .hero-photo-card::before {
        inset: 7px;
        border-radius: 17px;
    }

    .hero-photo {
        border-radius: 17px;
    }
}



/* ===== CARROSSEL DE FOTOS ===== */
.carousel {
    position: relative;
    max-width: 980px;
    margin: 0 auto;
    padding: 12px 66px 0;
}

.carousel-track {
    position: relative;
    min-height: 620px;
}

.carousel-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateY(14px);
    transition: opacity .75s ease, transform .75s ease;
    pointer-events: none;
}

.carousel-slide.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.carousel-image-wrap {
    background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(247,241,233,0.94));
    border: 1px solid rgba(63,77,61,0.12);
    box-shadow: 0 22px 56px rgba(47,43,39,0.12);
    border-radius: 30px;
    padding: 14px;
    overflow: hidden;
}

.carousel-image {
    width: 100%;
    height: 490px;
    object-fit: cover;
    display: block;
    border-radius: 22px;
}

.infantil-slide .carousel-image {
    object-position: center top;
}

.carousel-caption {
    text-align: center;
    max-width: 760px;
    margin: 22px auto 0;
}

.carousel-caption h3 {
    font-family: "Playfair Display", Georgia, serif;
    color: var(--verde-escuro);
    font-size: clamp(28px, 4vw, 38px);
    margin-bottom: 8px;
}

.carousel-caption p {
    color: #4c463f;
    font-size: 24px;
}

.carousel-btn {
    position: absolute;
    top: 225px;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.92);
    color: var(--verde-escuro);
    box-shadow: 0 12px 28px rgba(47,43,39,0.10);
    cursor: pointer;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform .2s ease, background .2s ease;
}

.carousel-btn:hover {
    transform: translateY(-50%) scale(1.05);
    background: #ffffff;
}

.carousel-btn.prev { left: 0; }
.carousel-btn.next { right: 0; }

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 16px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 0;
    cursor: pointer;
    background: rgba(63,77,61,0.22);
    transition: transform .2s ease, background .2s ease;
}

.carousel-dot.active {
    background: var(--verde-escuro);
    transform: scale(1.15);
}

@media (max-width: 900px) {
    .carousel {
        padding: 0 48px;
    }
    .carousel-track {
        min-height: 520px;
    }
    .carousel-image {
        height: 390px;
    }
    .carousel-btn {
        top: 185px;
    }
}

@media (max-width: 780px) {
    .carousel {
        padding: 0 0 0;
    }
    .carousel-track {
        min-height: 470px;
    }
    .carousel-image-wrap {
        border-radius: 24px;
        padding: 10px;
    }
    .carousel-image {
        height: 300px;
        border-radius: 18px;
    }
    .carousel-caption {
        margin-top: 16px;
    }
    .carousel-caption p {
        font-size: 20px;
    }
    .carousel-btn {
        top: 148px;
        width: 42px;
        height: 42px;
    }
    .carousel-btn.prev {
        left: 8px;
    }
    .carousel-btn.next {
        right: 8px;
    }
}


/* ===== MENU MOBILE + LINKS DO INSTAGRAM ===== */

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 50%;
    background: rgba(63,77,61,0.10);
    color: var(--verde-escuro);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.contato-grid a,
footer a {
    transition: opacity .2s ease, color .2s ease;
}

.contato-grid p a {
    color: var(--verde-escuro);
    font-weight: 700;
    text-decoration: none;
}

.contato-grid p a:hover,
footer a:hover {
    opacity: .82;
}

@media (max-width: 940px) {
    .navbar {
        position: sticky;
        align-items: center;
        flex-wrap: wrap;
    }

    .menu-toggle {
        display: inline-flex;
        order: 2;
    }

    .nav-cta {
        order: 3;
    }

    .nav-links {
        display: none;
        order: 4;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 6px;
        padding: 12px 0 4px;
        border-top: 1px solid rgba(63,77,61,0.10);
        margin-top: 8px;
    }

    .nav-links.ativo {
        display: flex;
    }

    .nav-links a {
        display: block;
        padding: 12px 14px;
        border-radius: 16px;
        background: rgba(255,255,255,0.54);
        font-size: 19px;
    }

    .nav-links a:hover {
        background: rgba(63,77,61,0.09);
    }
}

@media (max-width: 780px) {
    .menu-toggle {
        width: 46px;
        height: 46px;
    }
}


/* ===== AJUSTE MENU CELULAR: SEM WHATSAPP NO TOPO ===== */

@media (max-width: 940px) {
    .navbar {
        justify-content: space-between;
    }

    .navbar .nav-cta {
        display: none !important;
    }

    .menu-toggle {
        order: 2;
        margin-left: auto;
    }

    .nav-links {
        order: 3;
    }
}
