:root {
    --ink: #141413;
    --deep: #17301f;
    --forest: #e1ece7;
    --forest-dark: #1d3b2c;
    --sage: #9fb79b;
    --sage-light: #d9e6d3;
    --olive: #c66b45;
    --terracotta-dark: #a8552f;
    --paper: #f3ece1;
    --cream: #ece2d1;
    --line: #e1d7c4;
    --muted: #111111
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--muted);
    font-family: 'DM Sans', sans-serif;
    line-height: 1.55
}

.container {
    width: min(1180px, calc(100% - 48px));
    margin-inline: auto
}

/* ---------- Hero ---------- */
.hero {
    background: radial-gradient(ellipse at 12% 10%, #fff8ee80 0%, transparent 42%), linear-gradient(120deg, #f3ece1 0%, #d9e3ce 30%, #a3c299 62%, var(--forest) 100%);
    color: var(--ink);
    padding-bottom: 0;
    overflow: hidden
}

.nav {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    position: relative;
    z-index: 3;
    color: var(--ink)
}

.nav:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 100vw;
    transform: translateX(-50%);
    background: var(--paper);
    box-shadow: 0 4px 16px #00000022;
    z-index: -1
}

.brand {
    display: inline-flex;
    align-items: center
}

.brand img,
.footer-logo {
    width: 180px;
    height: 70px;
    object-fit: contain;
    object-position: center;
    display: block;
    mix-blend-mode: multiply
}

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

.nav-links>a:not(.button),
footer a {
    color: inherit;
    text-decoration: none;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .05em
}

.nav-links>a:not(.button):hover,
footer a:hover {
    color: var(--sage)
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 24px;
    border-radius: 100px;
    background: linear-gradient(110deg, var(--olive), var(--terracotta-dark));
    color: #fff !important;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .03em;
    box-shadow: 0 8px 20px #0003;
    transition: .25s transform;
    border: none;
    cursor: pointer
}

.button:hover {
    transform: translateY(-2px)
}

.button-small {
    padding: 11px 16px;
    font-size: 10px
}

.button-dark {
    background: linear-gradient(110deg, var(--olive), var(--terracotta-dark));
}

.button-outline {
    background: transparent;
    border: 1px solid var(--forest);
    color: var(--forest) !important;
    box-shadow: none
}

.hero-content {
    min-height: 500px;
    display: grid;
    grid-template-columns: 1fr .93fr;
    align-items: center;
    position: relative;
    isolation: isolate;
    border-radius: 28px;
    padding: 40px clamp(24px, 4vw, 56px)
}

/* Camada 1: textura de papel/pergaminho (base de tudo) */
.hero-content:before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -3;
    border-radius: 28px;
    background:
        radial-gradient(circle at 12% 15%, #ffffff70 0%, transparent 45%),
        radial-gradient(circle at 88% 85%, #ffffff55 0%, transparent 45%),
        linear-gradient(135deg, #f7f2e9 0%, #f0e9da 55%, #f6f1e6 100%);
    box-shadow: 0 20px 50px #00000022
}

/* Camada 2: moldura + flores (imagem real assets/floral-corner.png) sobre o degradê verde-água/branco */
.hero-content:after {
    content: '';
    position: absolute;
    inset: clamp(18px, 3vw, 34px);
    z-index: -2;
    border-radius: 6px;
    background-image:
        url("assets/quadroFlores.png"),
        linear-gradient(165deg, #dcece5 0%, #eef6f1 45%, #ffffff 100%);
    background-repeat: no-repeat, no-repeat;
    background-position: center, center;
    background-size: cover, 100% 100%;
    opacity: .25;
    pointer-events: none;
    transform-origin: center;
    animation: frame-sway 12s ease-in-out infinite
}

@keyframes frame-sway {
    0%, 100% { transform: scale(1) rotate(0deg) }
    50% { transform: scale(1.008) rotate(.3deg) }
}

.hero-copy {
    padding: 55px 0 96px;
    position: relative;
    z-index: 1
}

.eyebrow {
    margin: 0 0 10px;
    color: var(--olive);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase
}

.eyebrow.light {
    color: var(--forest-dark)
}

h1,
h2,
h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    line-height: 1.13
}

h1 {
    font-size: clamp(40px, 4.1vw, 65px);
    max-width: 650px;
    margin: 0 0 20px
}

h1 em,
h2 em {
    color: var(--olive);
    font-weight: 500;
    font-style: italic
}

.hero-text {
    max-width: 470px;
    color: var(--muted);
    font-size: 16px
}

.check-list {
    padding: 5px 0 12px;
    margin: 12px 0 18px;
    list-style: none
}

.check-list li {
    margin: 9px 0;
    font-size: 14px
}

.check-list li:before {
    content: '✓';
    border: 1px solid var(--forest-dark);
    border-radius: 50%;
    color: var(--terracotta-dark);
    display: inline-grid;
    place-items: center;
    width: 17px;
    height: 17px;
    margin-right: 10px;
    font-size: 11px
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 25px;
    flex-wrap: wrap
}

.text-link {
    font-size: 13px;
    color: var(--forest-dark)
    
}

/* ---------- Hero image ---------- */
.hero-image {
    overflow: visible;
    border-radius: 0;
    align-self: end;
    height: 780px;
    position: relative;
    isolation: isolate
}

.hero-image:before {
    content: '';
    position: absolute;
    z-index: -1;
    inset: -14% -26% -10% -6%;
    background:
        radial-gradient(ellipse 55% 46% at 72% 15%, #fff8ee70 0%, transparent 60%),
        radial-gradient(ellipse 60% 55% at 20% 55%, #9fb79b55 0%, transparent 66%),
        radial-gradient(ellipse 64% 60% at 84% 96%, #1d3b2c66 0%, transparent 70%),
        conic-gradient(from 210deg at 68% 32%, transparent 0deg, #fff8ee40 35deg, transparent 95deg, #9fb79b40 175deg, transparent 235deg, #1d3b2c55 305deg, transparent 360deg);
    filter: blur(46px)
}

.hero-image img {
    height: 100%;
    width: 100%;
    display: block;
    object-fit: contain;
    object-position: center bottom;
    mix-blend-mode: multiply;
    filter: grayscale(1) contrast(1.08) brightness(1.02);
    transform: scale(1.1);
    transform-origin: center bottom
}

.hero-image .tone {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, #e0ebe7aa, #d9e6d733);
    mix-blend-mode: color;
    pointer-events: none
}

.trust-card {
    min-height: 145px;
    background: linear-gradient(120deg, var(--forest-dark), var(--forest));
    border: 1px solid var(--sage);
    border-radius: 17px 17px 0 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 25px 35px;
    position: relative;
    z-index: 2
}

.trust-card article {
    padding: 0 26px;
    border-right: 1px solid #9fb79b55;
    text-align: center
}

.trust-card article:last-child {
    border: 0
}

.icon {
    color: var(--olive);
    font-size: 29px;
    line-height: 1
}

.trust-card h3 {
    font-size: 17px;
    margin: 5px 0;
    color: #111111
}

.trust-card p {
    font-size: 11px;
    line-height: 1.35;
    color: #111111;
    margin: 0
}

.section {
    padding: 100px 0
}

h2 {
    font-size: clamp(32px, 3.2vw, 48px);
    margin: 0 0 18px
}

/* ---------- Treatments ---------- */
.treatments {
    display: grid;
    grid-template-columns: .9fr 1fr;
    align-items: center;
    gap: 90px
}

.treatment-photo {
    position: relative;
    height: 510px;
    overflow: hidden;
    border-radius: 12px
}

.treatment-photo>img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.18)
}

.stamp {
    position: none;
    bottom: 26px;
    left: -25px;
    width: 112px;
    height: 112px;
    border-radius: 50%;
    background: var(--paper);
    border: 1px solid var(--forest);
    display: grid;
    place-content: center;
    text-align: center;
    text-transform: uppercase;
    font-size: 9px;
    letter-spacing: .08em;
    color: var(--olive)
}

.stamp strong {
    font-family: 'Playfair Display';
    font-size: 13px;
    text-transform: none;
    letter-spacing: 0
}

.treatments-copy>p:not(.eyebrow),
.about p {
    color: var(--muted);
    max-width: 530px
}

.service-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid var(--line);
    margin: 28px 0
}

.service-grid>div {
    padding: 17px 15px 15px 0;
    border-bottom: 1px solid var(--line)
}

.service-grid>div:nth-child(odd) {
    border-right: 1px solid var(--line);
    padding-right: 18px
}

.service-grid>div:nth-child(even) {
    padding-left: 18px
}

.service-grid span {
    color: var(--olive);
    font-size: 11px;
    font-weight: 700
}

.service-grid h3 {
    font-size: 17px;
    margin: 3px 0
}

.service-grid p {
    font-size: 12px;
    color: var(--muted);
    margin: 0
}

/* ---------- About ---------- */
.about {
    background: var(--cream)
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr .9fr;
    gap: 100px;
    align-items: center
}

.about-image {
    height: 430px;
    overflow: hidden;
    border-radius: 12px
}

.about-image>img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 58% 28%
}

.about-image-wrap {
    position: relative
}

.mentoria-card {
    position: absolute;
    bottom: -28px;
    left: -28px;
    width: 150px;
    background: var(--paper);
    border: 1px solid var(--forest);
    border-radius: 12px;
    padding: 10px;
    text-align: center;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .15)
}

.mentoria-card>img {
    display: block;
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px
}

.mentoria-card p {
    margin: 8px 0 0;
    font-family: 'Playfair Display';
    font-style: italic;
    font-size: 12px;
    line-height: 1.35;
    color: #111111
}

/* ---------- Results / Before-After ---------- */
.results {
    background: #fffdfb
}

.results-intro {
    max-width: 630px;
    margin: 0 auto 34px;
    text-align: center;
    color: var(--muted);
    font-size: 14px
}

.result-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px;
    max-width: 840px;
    margin: auto
}

.result-card {
    margin: 0;
    overflow: hidden;
    border-radius: 12px;
    background: var(--cream);
    border: 1px solid var(--line)
}

.result-card img {
    display: block;
    width: 100%;
    height: 430px;
    object-fit: cover;
    object-position: top
}

.result-card.pair {
    display: grid;
    grid-template-columns: 1fr 1fr
}

.result-card.pair img {
    height: 430px
}

.result-card.pair span.tag {
    grid-column: 1 / -1;
    display: flex;
    justify-content: space-between;
    padding: 8px 14px 0;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--olive)
}

.result-caption {
    padding: 13px 16px;
    font-family: 'Playfair Display', serif;
    text-align: center;
    color: var(--ink)
}

.results-empty {
    text-align: center;
    color: var(--muted);
    font-size: 13px;
    padding: 30px 0
}

/* ---------- Testimonials ---------- */
.testimonials {
    max-width: 800px;
    text-align: center
}

.centered {
    text-align: center
}

.quote {
    margin: 35px auto 0;
    max-width: 650px;
    min-height: 160px
}

.quote-mark {
    display: block;
    color: var(--sage);
    font: 70px/40px 'Playfair Display'
}

blockquote {
    font: italic 24px/1.4 'Playfair Display';
    margin: 13px 0 22px
}

.quote p {
    font-size: 12px;
    color: var(--muted)
}

.dots {
    display: flex;
    justify-content: center;
    gap: 7px;
    margin-top: 18px
}

.dots button {
    width: 9px;
    height: 9px;
    padding: 0;
    border-radius: 50%;
    border: 1px solid var(--sage);
    background: transparent;
    cursor: pointer
}

.dots button.active {
    background: var(--sage)
}

/* ---------- CTA ---------- */
.cta {
    background: linear-gradient(100deg, var(--forest), var(--forest-dark));
    text-align: center;
    color: #fff;
    padding: 70px 20px;
    position: relative
}

.cta:before {
    content: '✦';
    color: #ffffff;
    opacity: .03;
    font-size: 180px;
    position: absolute;
    left: 10%;
    top: -40px
}

.cta .container {
    position: relative
}

.cta p {
    margin: 0;
    color: var(--sage-light)
}

.cta h2 {
    font-size: 42px;
    margin: 6px 0 22px;
    color: #fff
}

.cta h2 em {
    color: var(--sage-light)
}

.cta small {
    display: block;
    margin-top: 12px;
    font-size: 11px;
    color: #d7e3da
}

/* ---------- Footer ---------- */
footer {
    background: white;
    color: #111111;
    padding-top: 55px
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr .8fr 1fr 1.15fr;
    gap: 40px
}

.footer-grid p {
    font-size: 12px;
    color: #111111;
    max-width: 230px
}

.footer-grid h3 {
    font: 600 11px 'DM Sans';
    text-transform: uppercase;
    letter-spacing: .1em;
    color: #0d0e0d;
    margin: 7px 0 14px
}

.footer-grid a:not(.button) {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 8px 0;
    font-size: 11px;
    text-transform: none;
    letter-spacing: 0
}

.footer-grid a:not(.button) svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    fill: currentColor
}

.copyright {
    border-top: 1px solid #0e0d0d22;
    margin-top: 35px;
    padding: 16px 0;
    color: #141414;
    font-size: 10px;
    text-align: center;
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap
}

.admin-link {
    color: #022512 !important;
    text-decoration: underline
}

.whatsapp-float {
    display: grid;
    place-items: center;
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    text-decoration: none;
    font-size: 30px;
    box-shadow: 0 6px 18px #0004;
    z-index: 5
}

.menu-toggle {
    display: none;
    background: none;
    border: 0
}

@media(max-width:850px) {
    .nav {
        height: 78px
    }

    .menu-toggle {
        display: flex;
        flex-direction: column;
        gap: 5px;
        padding: 6px
    }

    .menu-toggle span {
        background: var(--ink);
        width: 25px;
        height: 2px
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 74px;
        right: 0;
        left: 0;
        background:var(--terracotta-dark);
        padding: 20px;
        flex-direction: column;
        align-items: flex-start;
        border: 1px solid white;
        z-index: 10
    }

    .nav-links.open {
        display: flex
    }

    .hero-content,
    .treatments,
    .about-grid {
        grid-template-columns: 1fr;
        gap: 35px
    }

    .hero-copy {
        padding: 50px 0 25px
    }

    .hero-image {
        height: 380px
    }

    .trust-card {
        grid-template-columns: 1fr 1fr;
        padding: 20px
    }

    .trust-card article {
        padding: 14px;
        border-right: 0;
        border-bottom: 1px solid #9fb79b40
    }

    .trust-card article:nth-last-child(-n+2) {
        border-bottom: 0
    }

    .treatments {
        padding-top: 75px
    }

    .treatment-photo {
        height: 410px
    }

    .about-grid {
        gap: 45px
    }

    .mentoria-card {
        width: 130px;
        left: -14px;
        bottom: -20px
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr
    }

    .result-grid {
        gap: 16px
    }

    .result-card img,
    .result-card.pair img {
        height: 330px
    }

    .section {
        padding: 75px 0
    }
}

@media(max-width:520px) {
    .container {
        width: min(100% - 32px, 1180px)
    }

    .brand img {
        width: 132px;
        height: 46px
    }

    .hero-actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 14px
    }

    .trust-card {
        width: calc(100% - 32px)
    }

    .trust-card h3 {
        font-size: 15px
    }

    .trust-card p {
        display: none
    }

    .hero-image {
        height: 340px
    }

    .treatments {
        gap: 35px
    }

    .service-grid {
        grid-template-columns: 1fr
    }

    .service-grid>div:nth-child(odd) {
        border-right: 0;
        padding-right: 0
    }

    .service-grid>div:nth-child(even) {
        padding-left: 0
    }

    .about-image {
        height: 350px
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 22px
    }

    .cta h2 {
        font-size: 33px
    }

    blockquote {
        font-size: 21px
    }

    .treatment-photo {
        height: 350px
    }

    .result-grid {
        grid-template-columns: 1fr
    }

    .result-card img,
    .result-card.pair img {
        height: auto;
        max-height: 420px
    }

    .result-card.pair {
        grid-template-columns: 1fr
    }
}
