@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Playfair+Display:wght@500;600;700&display=swap');


/* ==============================================================
   ROOT
============================================================== */

:root {

    --olive-900: #1f2a14;
    --olive-800: #293619;
    --olive-700: #3d4c28;
    --olive-600: #526338;
    --olive-500: #66794a;
    --olive-400: #7d8c62;

    --cream: #faf6f0;
    --cream-dark: #f0eae1;

    --white: #ffffff;

    --text-dark: #272b22;
    --text-muted: #72766c;

    --green: #48a649;
    --green-dark: #37863a;

    --serif: "Playfair Display", Georgia, serif;
    --sans: "Montserrat", sans-serif;

    --container: 1180px;

    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 30px;
    --radius-xl: 40px;

    --shadow-sm: 0 10px 25px rgba(0,0,0,.07);
    --shadow-md: 0 20px 45px rgba(0,0,0,.12);
    --shadow-lg: 0 30px 70px rgba(0,0,0,.18);

    --transition: .35s cubic-bezier(.22,1,.36,1);
}


/* ==============================================================
   RESET
============================================================== */

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


html {
    scroll-behavior: smooth;
}


body {
    min-height: 100vh;

    font-family: var(--sans);
    color: var(--white);

    background: var(--olive-600);

    overflow-x: hidden;

    -webkit-font-smoothing: antialiased;
}


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


a {
    color: inherit;
    text-decoration: none;
}


button,
a {
    -webkit-tap-highlight-color: transparent;
}


::selection {
    background: var(--green);
    color: white;
}


/* ==============================================================
   CONTAINER
============================================================== */

.section-container,
.header-container,
.footer-container,
.footer-bottom {
    width: min(var(--container), 88%);
    margin-inline: auto;
}


/* ==============================================================
   HEADER
============================================================== */

.header {
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;

    z-index: 100;
}


.header-container {

    min-height: 90px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    border-bottom: 1px solid rgba(255,255,255,.1);
}


.logo {
    font-family: var(--serif);
    font-size: 1.7rem;
    font-weight: 600;
    letter-spacing: -.5px;
}


.logo span {
    color: #b6c49b;
}


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


.nav a {
    position: relative;

    font-size: .78rem;
    font-weight: 500;

    letter-spacing: .5px;

    opacity: .75;

    transition: var(--transition);
}


.nav a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -8px;

    width: 100%;
    height: 1px;

    background: white;

    transform: scaleX(0);
    transform-origin: right;

    transition: var(--transition);
}


.nav a:hover {
    opacity: 1;
}


.nav a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}


.header-button {
    padding: 11px 20px;

    border: 1px solid rgba(255,255,255,.3);
    border-radius: 999px;

    font-size: .75rem;
    font-weight: 600;

    transition: var(--transition);
}


.header-button:hover {
    background: white;
    color: var(--olive-800);

    transform: translateY(-2px);
}


/* ==============================================================
   HERO
============================================================== */

.hero {

    position: relative;

    min-height: 100vh;

    display: flex;
    align-items: center;

    padding: 120px 0 80px;

    background:
        radial-gradient(
            circle at 15% 30%,
            rgba(255,255,255,.08),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            #526338,
            #3e4e29
        );

    overflow: hidden;
}


.hero::before {

    content: "";

    position: absolute;

    width: 600px;
    height: 600px;

    right: -250px;
    top: -250px;

    border-radius: 50%;

    border: 1px solid rgba(255,255,255,.08);

}


.hero-container {

    width: min(var(--container), 88%);
    margin-inline: auto;

    display: grid;

    grid-template-columns:
        minmax(0, .95fr)
        minmax(400px, .9fr);

    align-items: center;

    gap: clamp(50px, 7vw, 100px);
}


/* ==============================================================
   HERO CONTENT
============================================================== */

.hero-content {
    position: relative;
    z-index: 2;

    animation: heroContent .9s ease both;
}


.eyebrow {

    display: inline-flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 22px;

    font-size: .67rem;
    font-weight: 600;

    letter-spacing: 2.5px;

    color: #c3d0aa;
}


.eyebrow::before {

    content: "";

    width: 28px;
    height: 1px;

    background: currentColor;
}


.hero h1 {

    max-width: 650px;

    margin-bottom: 25px;

    font-family: var(--serif);

    font-size: clamp(
        3.2rem,
        5.5vw,
        5.3rem
    );

    line-height: 1.02;

    letter-spacing: -2px;
}


.hero h1 span {

    display: block;

    color: #d4ddc2;

    font-style: italic;
}


.hero-content > p {

    max-width: 500px;

    margin-bottom: 34px;

    color: rgba(255,255,255,.78);

    font-size: .92rem;

    line-height: 1.9;
}


/* ==============================================================
   HERO BUTTONS
============================================================== */

.hero-actions {

    display: flex;
    align-items: center;
    gap: 14px;

    flex-wrap: wrap;

    margin-bottom: 50px;
}


.button {

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;

    min-height: 50px;

    padding: 0 25px;

    border-radius: 999px;

    font-size: .76rem;
    font-weight: 600;

    transition: var(--transition);
}


.button span {

    font-size: 1rem;

    transition: var(--transition);
}


.button-primary {

    background: white;
    color: var(--olive-800);

    box-shadow: 0 12px 30px rgba(0,0,0,.15);
}


.button-primary:hover {

    transform: translateY(-4px);

    box-shadow: 0 18px 40px rgba(0,0,0,.22);
}


.button-primary:hover span {
    transform: translateX(5px);
}


.button-secondary {

    border: 1px solid rgba(255,255,255,.2);

    color: white;
}


.button-secondary:hover {

    background: rgba(255,255,255,.08);

    transform: translateY(-3px);
}


/* ==============================================================
   HERO TRUST
============================================================== */

.hero-trust {

    display: flex;
    align-items: center;
    gap: 25px;
}


.trust-item {

    display: flex;
    flex-direction: column;
    gap: 2px;
}


.trust-item strong {

    font-family: var(--serif);

    font-size: 1.2rem;
}


.trust-item span {

    font-size: .62rem;

    text-transform: uppercase;

    letter-spacing: 1px;

    opacity: .55;
}


.trust-divider {

    width: 1px;
    height: 32px;

    background: rgba(255,255,255,.18);
}


/* ==============================================================
   HERO IMAGE
============================================================== */

.hero-visual {

    position: relative;

    display: flex;
    justify-content: center;
    align-items: center;

    min-height: 560px;
}


.hero-image-frame {

    position: relative;

    width: min(100%, 480px);

    aspect-ratio: 4 / 5;

    padding: 10px;

    border-radius: var(--radius-xl);

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.25),
            rgba(255,255,255,.04)
        );

    box-shadow:
        0 35px 80px rgba(0,0,0,.25);

    overflow: visible;

    animation: imageFloat 6s ease-in-out infinite;
}


.hero-image-frame::before {

    content: "";

    position: absolute;

    inset: 10px;

    border-radius: calc(var(--radius-xl) - 8px);

    border: 1px solid rgba(255,255,255,.2);

    pointer-events: none;

    z-index: 2;
}


.hero-image-frame img {

    height: 100%;

    object-fit: cover;

    object-position: center;

    border-radius: calc(var(--radius-xl) - 8px);

    filter: saturate(.9);

    transition: var(--transition);
}


.hero-image-frame:hover img {

    transform: scale(1.025);

    filter: saturate(1);
}


/* ==============================================================
   HERO BADGE
============================================================== */

.hero-image-badge {

    position: absolute;

    left: -35px;
    bottom: 40px;

    display: flex;
    align-items: center;
    gap: 12px;

    padding: 14px 18px;

    border: 1px solid rgba(255,255,255,.15);
    border-radius: 15px;

    background: rgba(31,42,20,.85);

    backdrop-filter: blur(15px);

    box-shadow: 0 15px 35px rgba(0,0,0,.2);

    z-index: 5;

    animation: badgeFloat 4s ease-in-out infinite;
}


.badge-icon {

    width: 34px;
    height: 34px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: rgba(255,255,255,.1);

    color: #d5dfc1;
}


.hero-image-badge div {

    display: flex;
    flex-direction: column;
}


.hero-image-badge strong {
    font-size: .7rem;
}


.hero-image-badge small {

    font-size: .55rem;

    opacity: .55;
}


/* ==============================================================
   DECORAÇÕES HERO
============================================================== */

.hero-decoration {

    position: absolute;

    border: 1px solid rgba(255,255,255,.13);

    border-radius: 50%;
}


.hero-decoration-one {

    width: 100px;
    height: 100px;

    top: 20px;
    right: 0;
}


.hero-decoration-two {

    width: 45px;
    height: 45px;

    left: 0;
    bottom: 70px;

    background: rgba(255,255,255,.05);
}


/* ==============================================================
   ABOUT
============================================================== */

.section-dark {

    background:
        linear-gradient(
            135deg,
            var(--olive-900),
            #18210f
        );
}


.about {

    padding: 120px 0;
}


.about-header {

    max-width: 750px;

    margin-bottom: 70px;
}


.about h2,
.experience h2,
.contact h2 {

    font-family: var(--serif);

    font-size: clamp(
        2.4rem,
        4vw,
        3.8rem
    );

    line-height: 1.08;

    letter-spacing: -1px;
}


.about h2 span,
.experience h2 span,
.contact h2 span {

    color: #aebb9c;

    font-style: italic;
}


.about-content {

    display: grid;

    grid-template-columns:
        minmax(300px, .8fr)
        minmax(400px, 1.2fr);

    gap: 100px;

    align-items: start;
}


.about-text p {

    max-width: 500px;

    margin-bottom: 20px;

    color: rgba(255,255,255,.65);

    font-size: .88rem;

    line-height: 1.9;
}


/* ==============================================================
   FEATURES
============================================================== */

.about-features {

    display: flex;
    flex-direction: column;
}


.feature {

    display: grid;

    grid-template-columns: 45px 1fr;

    gap: 20px;

    padding: 25px 0;

    border-top: 1px solid rgba(255,255,255,.1);

    transition: var(--transition);
}


.feature:last-child {

    border-bottom: 1px solid rgba(255,255,255,.1);
}


.feature:hover {

    padding-left: 10px;
}


.feature-number {

    color: #8d9a78;

    font-family: var(--serif);

    font-size: .85rem;
}


.feature h3 {

    margin-bottom: 6px;

    font-family: var(--serif);

    font-size: 1.15rem;
}


.feature p {

    color: rgba(255,255,255,.52);

    font-size: .75rem;

    line-height: 1.7;
}


/* ==============================================================
   TREATMENTS
============================================================== */

.treatments {

    padding: 120px 0;

    background: var(--cream);

    color: var(--text-dark);
}


.eyebrow-dark {
    color: var(--olive-600);
}


.section-heading {

    display: flex;

    align-items: end;
    justify-content: space-between;

    gap: 50px;

    margin-bottom: 65px;
}


.section-heading h2 {

    max-width: 650px;

    font-family: var(--serif);

    font-size: clamp(
        2.5rem,
        4vw,
        3.8rem
    );

    line-height: 1.05;
}


.section-heading h2 span {

    display: block;

    color: var(--olive-600);

    font-style: italic;
}


.section-heading > p {

    max-width: 310px;

    margin-bottom: 4px;

    color: var(--text-muted);

    font-size: .76rem;

    line-height: 1.8;
}


/* ==============================================================
   TREATMENTS LAYOUT
============================================================== */

.treatments-layout {

    display: grid;

    grid-template-columns:
        minmax(0, 1.2fr)
        minmax(300px, .8fr);

    gap: 50px;

    align-items: stretch;
}


.treatments-grid {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 18px;
}


/* ==============================================================
   TREATMENT CARD
============================================================== */

.treatment-card {

    position: relative;

    min-height: 250px;

    display: flex;
    flex-direction: column;

    padding: 28px;

    border: 1px solid rgba(82,99,56,.1);

    border-radius: var(--radius-md);

    background: white;

    box-shadow: var(--shadow-sm);

    overflow: hidden;

    transition: var(--transition);
}


.treatment-card::before {

    content: "";

    position: absolute;

    width: 100px;
    height: 100px;

    right: -50px;
    top: -50px;

    border-radius: 50%;

    background: rgba(82,99,56,.06);

    transition: var(--transition);
}


.treatment-card:hover {

    transform: translateY(-8px);

    box-shadow: var(--shadow-md);

    border-color: rgba(82,99,56,.2);
}


.treatment-card:hover::before {

    transform: scale(2.5);

    background: rgba(82,99,56,.09);
}


.card-number {

    position: relative;

    margin-bottom: 30px;

    color: var(--olive-500);

    font-size: .62rem;

    font-weight: 600;

    letter-spacing: 1px;
}


.card-icon {

    width: 40px;
    height: 40px;

    display: grid;
    place-items: center;

    margin-bottom: 22px;

    border-radius: 50%;

    background: var(--olive-900);

    color: white;

    font-size: .8rem;

    transition: var(--transition);
}


.treatment-card:hover .card-icon {

    transform: rotate(15deg) scale(1.08);

    background: var(--olive-600);
}


.treatment-card h3 {

    position: relative;

    margin-bottom: 10px;

    font-family: var(--serif);

    font-size: 1.3rem;
}


.treatment-card p {

    max-width: 260px;

    color: var(--text-muted);

    font-size: .72rem;

    line-height: 1.8;
}


.card-arrow {

    position: absolute;

    right: 25px;
    bottom: 22px;

    color: var(--olive-600);

    transition: var(--transition);
}


.treatment-card:hover .card-arrow {

    transform: translateX(6px);
}


/* ==============================================================
   TREATMENT IMAGE
============================================================== */

.treatments-image {

    position: relative;

    min-height: 520px;
}


.treatments-image-frame {

    height: 100%;

    padding: 10px;

    border-radius: var(--radius-xl);

    background: var(--olive-600);

    box-shadow: var(--shadow-lg);
}


.treatments-image-frame img {

    height: 100%;

    min-height: 500px;

    object-fit: cover;

    border-radius: calc(var(--radius-xl) - 8px);

    transition: var(--transition);
}


.treatments-image:hover img {

    transform: scale(1.025);
}


.image-caption {

    position: absolute;

    left: -25px;
    bottom: 35px;

    display: flex;
    flex-direction: column;

    padding: 18px 22px;

    border-radius: 15px;

    background: var(--olive-900);

    color: white;

    box-shadow: var(--shadow-md);
}


.image-caption span {

    margin-bottom: 4px;

    color: #aebb9c;

    font-size: .55rem;

    text-transform: uppercase;

    letter-spacing: 2px;
}


.image-caption strong {

    font-family: var(--serif);

    font-size: .9rem;
}


/* ==============================================================
   EXPERIENCE
============================================================== */

.experience {

    padding: 120px 0;

    background:
        linear-gradient(
            135deg,
            var(--olive-600),
            var(--olive-700)
        );
}


.experience-container {

    display: grid;

    grid-template-columns:
        minmax(300px, .9fr)
        minmax(400px, 1.1fr);

    align-items: center;

    gap: 100px;
}


/* ==============================================================
   EXPERIENCE IMAGE
============================================================== */

.experience-image {

    position: relative;

    padding: 15px;
}


.experience-image-frame {

    position: relative;

    overflow: hidden;

    border-radius: var(--radius-xl);

    box-shadow: var(--shadow-lg);
}


.experience-image-frame::after {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            transparent 60%,
            rgba(0,0,0,.3)
        );
}


.experience-image-frame img {

    aspect-ratio: 4 / 5;

    object-fit: cover;

    transition: .7s ease;
}


.experience-image:hover img {

    transform: scale(1.04);
}


/* ==============================================================
   EXPERIENCE BADGE
============================================================== */

.experience-badge {

    position: absolute;

    right: -5px;
    bottom: 45px;

    display: flex;
    align-items: center;
    gap: 12px;

    padding: 15px 20px;

    border-radius: 15px;

    background: var(--olive-900);

    box-shadow: var(--shadow-md);

    z-index: 5;
}


.experience-badge strong {

    font-family: var(--serif);

    font-size: 2rem;
}


.experience-badge span {

    max-width: 80px;

    color: rgba(255,255,255,.55);

    font-size: .58rem;

    line-height: 1.5;
}


/* ==============================================================
   EXPERIENCE CONTENT
============================================================== */

.experience-content > p {

    max-width: 500px;

    margin: 25px 0 40px;

    color: rgba(255,255,255,.68);

    font-size: .83rem;

    line-height: 1.9;
}


/* ==============================================================
   STATS
============================================================== */

.stats-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 12px;
}


.stat-card {

    padding: 25px 18px;

    border: 1px solid rgba(255,255,255,.08);

    border-radius: var(--radius-md);

    background: rgba(31,42,20,.45);

    backdrop-filter: blur(10px);

    transition: var(--transition);
}


.stat-card:hover {

    transform: translateY(-6px);

    background: rgba(31,42,20,.65);
}


.stat-card strong {

    display: block;

    margin-bottom: 8px;

    font-family: var(--serif);

    font-size: 1.5rem;
}


.stat-card span {

    color: rgba(255,255,255,.5);

    font-size: .58rem;

    line-height: 1.5;
}


/* ==============================================================
   CONTACT
============================================================== */

.contact {

    position: relative;

    padding: 130px 0;

    background: var(--cream);

    color: var(--text-dark);

    text-align: center;

    overflow: hidden;
}


.contact::before {

    content: "";

    position: absolute;

    width: 450px;
    height: 450px;

    left: 50%;
    top: 50%;

    border-radius: 50%;

    border: 1px solid rgba(82,99,56,.08);

    transform: translate(-50%,-50%);
}


.contact-container {

    position: relative;
    z-index: 2;

    width: min(700px, 88%);

    margin-inline: auto;
}


.contact h2 {

    margin-bottom: 20px;

    color: var(--olive-900);
}


.contact p {

    max-width: 500px;

    margin: 0 auto 35px;

    color: var(--text-muted);

    font-size: .8rem;

    line-height: 1.8;
}


.button-whatsapp {

    background: var(--green);

    color: white;

    box-shadow:
        0 15px 35px rgba(72,166,73,.25);
}


.button-whatsapp:hover {

    background: var(--green-dark);

    transform: translateY(-5px);

    box-shadow:
        0 20px 45px rgba(72,166,73,.32);
}


/* ==============================================================
   FOOTER
============================================================== */

.footer {

    padding: 70px 0 25px;

    background: var(--olive-900);
}


.footer-container {

    display: grid;

    grid-template-columns: 2fr 1fr 1fr;

    gap: 50px;

    padding-bottom: 55px;

    border-bottom: 1px solid rgba(255,255,255,.08);
}


.footer-brand p {

    margin-top: 10px;

    color: rgba(255,255,255,.45);

    font-size: .7rem;
}


.footer-column h3 {

    margin-bottom: 15px;

    color: white;

    font-size: .7rem;

    text-transform: uppercase;

    letter-spacing: 1.5px;
}


.footer-column p {

    margin-bottom: 5px;

    color: rgba(255,255,255,.45);

    font-size: .7rem;
}


.footer-bottom {

    display: flex;

    justify-content: space-between;

    gap: 20px;

    padding-top: 25px;
}


.footer-bottom p {

    color: rgba(255,255,255,.3);

    font-size: .6rem;
}


.footer-bottom strong {

    color: rgba(255,255,255,.6);
}


/* ==============================================================
   ANIMAÇÕES
============================================================== */

@keyframes heroContent {

    from {
        opacity: 0;
        transform: translateY(35px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


@keyframes imageFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}


@keyframes badgeFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}


/* ==============================================================
   TABLET
============================================================== */

@media (max-width: 1000px) {

    .hero-container {

        grid-template-columns: 1fr 1fr;

        gap: 40px;
    }


    .hero h1 {

        font-size: clamp(
            2.8rem,
            6vw,
            4rem
        );
    }


    .hero-visual {

        min-height: 480px;
    }


    .about-content,
    .experience-container {

        gap: 50px;
    }


    .treatments-layout {

        grid-template-columns: 1fr;

    }


    .treatments-image {

        min-height: 450px;

        max-width: 550px;

        margin-inline: auto;

        width: 100%;
    }


    .treatments-image-frame img {

        min-height: 430px;
    }

}


/* ==============================================================
   MOBILE
============================================================== */

@media (max-width: 760px) {

    .section-container,
    .header-container,
    .footer-container,
    .footer-bottom {

        width: min(90%, 600px);
    }


    /* HEADER */

    .header-container {

        min-height: 75px;
    }


    .nav {

        display: none;
    }


    .header-button {

        padding: 9px 16px;
    }


    /* HERO */

    .hero {

        padding: 120px 0 70px;
    }


    .hero-container {

        grid-template-columns: 1fr;

        text-align: center;
    }


    .hero-content > p {

        margin-inline: auto;
    }


    .hero-actions {

        justify-content: center;
    }


    .hero-trust {

        justify-content: center;
    }


    .hero-visual {

        min-height: auto;

        margin-top: 25px;
    }


    .hero-image-frame {

        width: min(100%, 390px);
    }


    .hero-image-badge {

        left: 0;
        bottom: 25px;
    }


    /* ABOUT */

    .about {

        padding: 85px 0;
    }


    .about-content {

        grid-template-columns: 1fr;

        gap: 50px;
    }


    /* TREATMENTS */

    .treatments {

        padding: 85px 0;
    }


    .section-heading {

        flex-direction: column;

        align-items: flex-start;

        gap: 20px;
    }


    .treatments-grid {

        grid-template-columns: 1fr;
    }


    .treatments-image {

        min-height: 400px;
    }


    .treatments-image-frame img {

        min-height: 380px;
    }


    /* EXPERIENCE */

    .experience {

        padding: 85px 0;
    }


    .experience-container {

        grid-template-columns: 1fr;

        gap: 55px;
    }


    .stats-grid {

        grid-template-columns: 1fr;
    }


    /* CONTACT */

    .contact {

        padding: 90px 0;
    }


    /* FOOTER */

    .footer {

        padding-top: 55px;
    }


    .footer-container {

        grid-template-columns: 1fr;

        gap: 35px;

        padding-bottom: 40px;
    }


    .footer-bottom {

        flex-direction: column;

        gap: 8px;
    }

}


/* ==============================================================
   MOBILE PEQUENO
============================================================== */

@media (max-width: 450px) {

    .hero h1 {

        font-size: 2.7rem;

        letter-spacing: -1.2px;
    }


    .hero-actions {

        flex-direction: column;

        width: 100%;
    }


    .button {

        width: 100%;
    }


    .hero-image-frame {

        aspect-ratio: 3 / 4;
    }


    .hero-image-badge {

        left: -5px;

        transform: scale(.9);
    }


    .treatment-card {

        min-height: 230px;
    }


    .experience-badge {

        right: -5px;

        transform: scale(.9);
    }

}


/* ==============================================================
   ACESSIBILIDADE
============================================================== */

a:focus-visible {

    outline: 2px solid var(--green);

    outline-offset: 4px;
}


@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {

        animation-duration: .01ms !important;

        animation-iteration-count: 1 !important;

        transition-duration: .01ms !important;

        scroll-behavior: auto !important;
    }

}