/* ============================================================
   DRA. CINTHIA LEONE
   Nova Identidade Visual

   Direção:
   • Elegante
   • Acolhedora
   • Premium
   • Natural
   • Editorial

   Paleta principal:
   Bronze / Caramelo: #9A6B3F
   Grafite quente:    #494641
   Taupe:             #6F6962
   Creme:             #F5F1EA
   ============================================================ */


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

*,
*::before,
*::after {
    box-sizing: border-box;
}

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

html,
body {
    margin: 0;
    padding: 0;
}

body {
    min-height: 100vh;

    font-family:
        "Inter",
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    color: #494641;
    background: #f8f5ef;

    line-height: 1.6;

    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.menu-open {
    overflow: hidden;
}

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

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

button,
input,
textarea,
select {
    font: inherit;
}

button {
    color: inherit;
}

::selection {
    color: #ffffff;
    background: #9a6b3f;
}


/* ============================================================
   VARIÁVEIS
   ============================================================ */

:root {

    /* ----------------------------
       IDENTIDADE
       ---------------------------- */

    --brand: #9a6b3f;
    --brand-dark: #805630;
    --brand-deep: #694521;
    --brand-soft: #c8a681;

    --graphite: #494641;
    --graphite-deep: #34312e;

    --taupe: #6f6962;
    --taupe-light: #928b84;

    --cream: #f5f1ea;
    --cream-light: #fbf9f5;
    --cream-dark: #ebe3d8;

    --white: #ffffff;

    /* ----------------------------
       TEXTO
       ---------------------------- */

    --text: #494641;
    --text-soft: #6f6962;
    --text-light: #928b84;

    /* ----------------------------
       BORDAS
       ---------------------------- */

    --line: rgba(73, 70, 65, 0.12);
    --line-medium: rgba(73, 70, 65, 0.18);

    --brand-line: rgba(154, 107, 63, 0.25);

    /* ----------------------------
       SOMBRAS
       ---------------------------- */

    --shadow-xs:
        0 4px 18px rgba(58, 49, 42, 0.05);

    --shadow-sm:
        0 12px 30px rgba(58, 49, 42, 0.08);

    --shadow-md:
        0 22px 55px rgba(58, 49, 42, 0.12);

    --shadow-lg:
        0 35px 90px rgba(37, 31, 26, 0.18);

    /* ----------------------------
       LAYOUT
       ---------------------------- */

    --container: 1180px;

    --header-height: 86px;

    /* ----------------------------
       RAIO
       ---------------------------- */

    --radius-sm: 12px;
    --radius: 18px;
    --radius-lg: 28px;
    --radius-xl: 38px;

    /* ----------------------------
       ANIMAÇÃO
       ---------------------------- */

    --ease:
        cubic-bezier(0.22, 1, 0.36, 1);

    --transition:
        260ms var(--ease);
}


/* ============================================================
   BASE
   ============================================================ */

.container {
    width:
        min(
            var(--container),
            calc(100% - 48px)
        );

    margin-inline: auto;
}

.center {
    text-align: center;
}

.mt {
    margin-top: 20px;
}

.mt-xl {
    margin-top: 42px;
}

.muted {
    color: var(--text-soft);
}

p {
    margin-top: 0;
}

h1,
h2,
h3,
p {
    text-wrap: pretty;
}

h1,
h2,
h3 {
    margin-top: 0;
}

h1,
h2 {
    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-weight: 600;
}


/* ============================================================
   EYEBROW
   Pequeno texto acima dos títulos
   ============================================================ */

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

    margin-bottom: 16px;

    color: var(--brand);

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 0.19em;

    text-transform: uppercase;
}

.eyebrow::before {
    content: "";

    display: block;

    width: 28px;
    height: 1px;

    background: currentColor;

    opacity: 0.7;
}

.eyebrow--light {
    color: rgba(255, 255, 255, 0.78);
}


/* ============================================================
   BOTÕES
   ============================================================ */

.btn {
    position: relative;

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

    min-height: 48px;

    padding: 12px 22px;

    border: 1px solid transparent;
    border-radius: 999px;

    cursor: pointer;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 0.015em;

    transition:
        transform var(--transition),
        box-shadow var(--transition),
        color var(--transition),
        background var(--transition),
        border-color var(--transition);
}

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

.btn--lg {
    min-height: 54px;

    padding:
        14px
        28px;

    font-size: 14px;
}


/* PRINCIPAL */

.btn--primary {
    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #a77749 0%,
            var(--brand) 52%,
            var(--brand-dark) 100%
        );

    border-color:
        rgba(154, 107, 63, 0.28);

    box-shadow:
        0 12px 30px
        rgba(128, 86, 48, 0.2);
}

.btn--primary:hover {
    background:
        linear-gradient(
            135deg,
            #a9794b,
            var(--brand-dark)
        );

    box-shadow:
        0 17px 38px
        rgba(128, 86, 48, 0.27);
}


/* CLARO SOBRE HERO */

.btn--light {
    color: #ffffff;

    background:
        rgba(255, 255, 255, 0.08);

    border-color:
        rgba(255, 255, 255, 0.38);

    backdrop-filter: blur(12px);
}

.btn--light:hover {
    background:
        rgba(255, 255, 255, 0.16);

    border-color:
        rgba(255, 255, 255, 0.6);
}


/* OUTLINE */

.btn--outline {
    color: var(--brand-dark);

    background: transparent;

    border-color:
        rgba(154, 107, 63, 0.42);
}

.btn--outline:hover {
    color: #ffffff;

    background: var(--brand);

    border-color: var(--brand);
}


/* CREME */

.btn--cream {
    color: var(--graphite-deep);

    background: var(--cream-light);

    border-color:
        rgba(255, 255, 255, 0.25);

    box-shadow:
        0 14px 38px
        rgba(0, 0, 0, 0.14);
}

.btn--cream:hover {
    background: #ffffff;

    box-shadow:
        0 18px 44px
        rgba(0, 0, 0, 0.18);
}


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

.header {
    position: fixed;

    top: 0;
    left: 0;
    right: 0;

    z-index: 1000;

    height: var(--header-height);

    background:
        rgba(248, 245, 239, 0.89);

    border-bottom:
        1px solid rgba(73, 70, 65, 0.08);

    backdrop-filter:
        blur(20px)
        saturate(150%);

    transition:
        background var(--transition),
        box-shadow var(--transition);
}

.header__inner {
    height: var(--header-height);

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

    gap: 32px;
}


/* ============================================================
   LOGO
   ============================================================ */

.brand {
    flex-shrink: 0;

    display: flex;
    align-items: center;
}

.brand__logo-img {
    display: block;

    width: auto;
    height: 54px;

    max-width: 245px;

    object-fit: contain;

    user-select: none;

    -webkit-user-drag: none;
}


/* ============================================================
   MENU DESKTOP
   ============================================================ */

.nav {
    display: flex;
    align-items: center;

    gap: 4px;

    margin-left: auto;
}

.nav a {
    position: relative;

    padding: 10px 11px;

    color: var(--taupe);

    font-size: 13px;
    font-weight: 500;

    transition:
        color var(--transition);
}

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

    position: absolute;

    left: 50%;
    bottom: 4px;

    width: 0;
    height: 1px;

    background: var(--brand);

    transform:
        translateX(-50%);

    transition:
        width var(--transition);
}

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

.nav a:hover::after {
    width: 22px;
}


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

.header__actions {
    display: flex;
    align-items: center;

    gap: 12px;
}

.header__cta {
    min-height: 44px;

    padding:
        10px
        20px;
}


/* ============================================================
   BOTÃO MENU MOBILE
   ============================================================ */

.menu-toggle {
    display: none;

    width: 44px;
    height: 44px;

    padding: 0;

    border: 1px solid var(--line);
    border-radius: 50%;

    background:
        rgba(255, 255, 255, 0.4);

    cursor: pointer;
}

.menu-toggle span {
    display: block;

    width: 18px;
    height: 1.5px;

    margin:
        4px
        auto;

    background:
        var(--graphite);

    transition:
        transform var(--transition),
        opacity var(--transition);
}

.menu-toggle.is-active span:nth-child(1) {
    transform:
        translateY(5.5px)
        rotate(45deg);
}

.menu-toggle.is-active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.is-active span:nth-child(3) {
    transform:
        translateY(-5.5px)
        rotate(-45deg);
}


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

.mobile-nav {
    position: absolute;

    top: 100%;
    left: 0;
    right: 0;

    overflow: hidden;

    max-height: 0;

    opacity: 0;

    background:
        rgba(248, 245, 239, 0.98);

    border-bottom:
        1px solid var(--line);

    backdrop-filter: blur(20px);

    transition:
        max-height 420ms var(--ease),
        opacity var(--transition);
}

.mobile-nav.is-open {
    max-height: 600px;

    opacity: 1;
}

.mobile-nav__inner {
    display: flex;
    flex-direction: column;

    gap: 2px;

    padding:
        18px
        0
        28px;
}

.mobile-nav__inner > a:not(.btn) {
    padding:
        13px
        4px;

    border-bottom:
        1px solid rgba(73, 70, 65, 0.07);

    color: var(--graphite);

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size: 23px;
    font-weight: 600;
}

.mobile-nav .btn {
    margin-top: 16px;
}


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

.hero {
    position: relative;

    min-height:
        max(
            680px,
            92vh
        );

    display: flex;
    align-items: center;

    overflow: hidden;

    background:
        var(--graphite-deep);
}

.hero__bg {
    position: absolute;

    inset: 0;
}

.hero__bg img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position: center;

    transform: scale(1.015);
}


/* Overlay mais editorial */

.hero__overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(38, 34, 30, 0.92) 0%,
            rgba(45, 40, 36, 0.79) 35%,
            rgba(45, 40, 36, 0.36) 65%,
            rgba(45, 40, 36, 0.18) 100%
        ),
        linear-gradient(
            0deg,
            rgba(42, 38, 34, 0.32),
            transparent 42%
        );
}

.hero__content {
    position: relative;

    z-index: 2;

    width: 100%;

    padding:
        calc(var(--header-height) + 70px)
        0
        84px;
}

.hero__copy {
    max-width: 690px;
}

.hero h1 {
    max-width: 700px;

    margin:
        0
        0
        24px;

    color: #ffffff;

    font-size:
        clamp(
            54px,
            6vw,
            88px
        );

    line-height: 0.95;

    letter-spacing: -0.035em;
}

.hero h1 span {
    display: block;

    color:
        #dfc6aa;

    font-style: italic;

    font-weight: 500;
}

.hero__lead {
    max-width: 600px;

    margin-bottom: 30px;

    color:
        rgba(255, 255, 255, 0.82);

    font-size:
        clamp(
            16px,
            1.6vw,
            19px
        );

    line-height: 1.75;
}

.hero__cta {
    display: flex;
    flex-wrap: wrap;

    gap: 12px;
}


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

.hero__trust {
    display: flex;
    align-items: center;

    gap: 24px;

    margin-top: 46px;
}

.hero__trust-item {
    display: flex;
    flex-direction: column;

    gap: 1px;
}

.hero__trust-item strong {
    color: #ffffff;

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size: 20px;
    font-weight: 600;
}

.hero__trust-item span {
    color:
        rgba(255, 255, 255, 0.56);

    font-size: 11px;

    letter-spacing: 0.08em;

    text-transform: uppercase;
}

.hero__trust-divider {
    width: 1px;
    height: 38px;

    background:
        rgba(255, 255, 255, 0.2);
}


/* ============================================================
   INTRO
   ============================================================ */

.intro {
    position: relative;

    padding:
        92px
        0
        70px;

    background:
        var(--cream-light);
}

.intro__inner {
    text-align: center;
}

.intro__statement {
    max-width: 800px;

    margin:
        4px
        auto
        38px;

    color:
        var(--graphite);

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size:
        clamp(
            35px,
            4.4vw,
            56px
        );

    font-weight: 500;

    line-height: 1.08;

    letter-spacing: -0.025em;
}

.intro__line {
    width: 1px;
    height: 56px;

    margin:
        0
        auto;

    background:
        linear-gradient(
            180deg,
            var(--brand),
            transparent
        );
}


/* ============================================================
   SEÇÕES
   ============================================================ */

.section {
    padding:
        110px
        0;
}

.section-heading {
    display: grid;

    grid-template-columns:
        minmax(0, 1.15fr)
        minmax(260px, 0.55fr);

    align-items: end;

    gap: 80px;

    margin-bottom: 52px;
}

.section-heading h2 {
    max-width: 720px;

    margin:
        0;

    color:
        var(--graphite);

    font-size:
        clamp(
            40px,
            4.5vw,
            62px
        );

    line-height: 1;

    letter-spacing: -0.03em;
}

.section-heading h2 em {
    color: var(--brand);

    font-weight: 500;
}

.section-heading > p,
.section-heading > div + p {
    max-width: 420px;

    margin:
        0
        0
        5px;

    color:
        var(--taupe);

    font-size: 14px;

    line-height: 1.8;
}

.section-heading--center {
    display: block;

    max-width: 720px;

    margin:
        0
        auto
        52px;

    text-align: center;
}

.section-heading--center .eyebrow {
    justify-content: center;
}

.section-heading--center h2 {
    margin-inline: auto;
}

.section-heading--center > p {
    max-width: 560px;

    margin:
        18px
        auto
        0;
}


/* ============================================================
   SOBRE
   ============================================================ */

.section--about {
    background:
        linear-gradient(
            180deg,
            var(--cream-light),
            var(--cream)
        );
}

.about {
    display: grid;

    grid-template-columns:
        minmax(340px, 0.82fr)
        minmax(0, 1.1fr);

    align-items: center;

    gap:
        clamp(
            60px,
            8vw,
            120px
        );
}


/* FOTO */

.about__media {
    position: relative;
}

.about__image-wrap {
    position: relative;

    overflow: hidden;

    border-radius:
        180px
        180px
        28px
        28px;

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

.about__image-wrap::before {
    content: "";

    position: absolute;

    inset: 16px;

    z-index: 2;

    pointer-events: none;

    border:
        1px solid
        rgba(255, 255, 255, 0.4);

    border-radius:
        165px
        165px
        20px
        20px;
}

.about__image {
    width: 100%;
    height:
        clamp(
            500px,
            55vw,
            670px
        );

    object-fit: cover;

    transition:
        transform 700ms var(--ease);
}

.about__image-wrap:hover .about__image {
    transform: scale(1.025);
}


/* ASSINATURA */

.about__signature {
    position: absolute;

    right: -28px;
    bottom: 34px;

    z-index: 4;

    min-width: 245px;

    padding:
        18px
        22px;

    background:
        rgba(251, 249, 245, 0.95);

    border:
        1px solid rgba(154, 107, 63, 0.16);

    border-radius:
        18px;

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

    backdrop-filter:
        blur(12px);
}

.about__signature strong {
    display: block;

    margin-bottom: 2px;

    color:
        var(--graphite);

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size: 20px;
}

.about__signature span {
    color:
        var(--taupe);

    font-size: 11px;

    letter-spacing: 0.08em;

    text-transform: uppercase;
}


/* TEXTO SOBRE */

.about__content h2 {
    max-width: 600px;

    margin:
        0
        0
        30px;

    color:
        var(--graphite);

    font-size:
        clamp(
            45px,
            5vw,
            66px
        );

    line-height: 0.98;

    letter-spacing: -0.03em;
}

.about__content h2 em {
    color:
        var(--brand);

    font-weight: 500;
}

.about__text {
    max-width: 620px;
}

.about__text p {
    margin:
        0
        0
        17px;

    color:
        var(--taupe);

    font-size: 15px;

    line-height: 1.82;
}

.about__cta {
    margin-top: 32px;
}


/* ============================================================
   CASOS
   ============================================================ */

.section--gallery {
    background:
        #ffffff;
}


/* ============================================================
   CARROSSEL
   ============================================================ */

.carousel {
    position: relative;

    display: grid;

    grid-template-columns:
        48px
        minmax(0, 1fr)
        48px;

    align-items: center;

    gap: 18px;
}

.carousel__track {
    display: flex;

    gap: 18px;

    overflow-x: auto;
    overflow-y: hidden;

    padding:
        28px
        12px
        34px;

    scroll-behavior: smooth;

    -webkit-overflow-scrolling: touch;

    scrollbar-width: none;
}

.carousel__track::-webkit-scrollbar {
    display: none;
}


/* ============================================================
   SETAS
   ============================================================ */

.carousel__btn {
    position: relative;

    z-index: 5;

    width: 48px;
    height: 48px;

    display: grid;
    place-items: center;

    padding: 0;

    border:
        1px solid
        var(--brand-line);

    border-radius: 50%;

    color:
        var(--brand-dark);

    background:
        rgba(255, 255, 255, 0.88);

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

    cursor: pointer;

    font-family:
        Georgia,
        serif;

    font-size: 29px;

    line-height: 1;

    transition:
        background var(--transition),
        color var(--transition),
        transform var(--transition),
        border-color var(--transition);
}

.carousel__btn:hover {
    color: #ffffff;

    background:
        var(--brand);

    border-color:
        var(--brand);

    transform:
        scale(1.05);
}

.carousel__btn--light {
    color:
        rgba(255, 255, 255, 0.88);

    background:
        rgba(255, 255, 255, 0.06);

    border-color:
        rgba(255, 255, 255, 0.28);
}

.carousel__btn--light:hover {
    color:
        var(--graphite);

    background:
        var(--cream-light);
}


/* ============================================================
   IMAGENS DINÂMICAS
   ============================================================ */

.carousel__item {
    flex:
        0 0
        clamp(
            245px,
            26vw,
            350px
        );

    position: relative;

    overflow: hidden;

    border-radius: 24px;

    background:
        var(--cream);

    border:
        1px solid
        rgba(73, 70, 65, 0.1);

    box-shadow:
        0 10px 30px
        rgba(58, 49, 42, 0.07);

    opacity: 0.72;

    transform: scale(0.94);

    transition:
        transform 420ms var(--ease),
        opacity 420ms var(--ease),
        box-shadow 420ms var(--ease);

    cursor: zoom-in;
}

.carousel__item img {
    width: 100%;
    height: 390px;

    object-fit: cover;

    transition:
        transform 700ms var(--ease);
}

.carousel__item:hover img {
    transform: scale(1.025);
}

.carousel__item.is-active {
    opacity: 1;

    transform:
        scale(1);

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


/* ============================================================
   CASOS
   ============================================================ */

[data-carousel="cases"]
.carousel__item {
    flex-basis:
        clamp(
            240px,
            23vw,
            320px
        );
}

[data-carousel="cases"]
.carousel__item img {
    height:
        clamp(
            330px,
            35vw,
            430px
        );
}


/* ============================================================
   CTA ABAIXO DOS CASOS
   ============================================================ */

.section-cta {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 26px;

    margin-top: 28px;

    text-align: center;
}

.section-cta p {
    margin: 0;

    color:
        var(--taupe);

    font-size: 14px;
}


/* ============================================================
   ANTES E DEPOIS
   ============================================================ */

.before-after-gallery {
    background:
        var(--cream);
}

.before-after-gallery
.carousel__item {
    flex-basis:
        clamp(
            300px,
            36vw,
            480px
        );

    border-radius:
        26px;
}

.before-after-gallery
.carousel__item img {
    height:
        clamp(
            380px,
            40vw,
            520px
        );

    object-fit: cover;
}


/* ============================================================
   TRATAMENTOS
   ============================================================ */

.section--treatments {
    background:
        var(--cream-light);
}

.treatment {
    flex:
        0 0
        min(
            340px,
            76vw
        );

    overflow: hidden;

    background:
        #ffffff;

    border:
        1px solid
        var(--line);

    border-radius:
        24px;

    box-shadow:
        0 10px 32px
        rgba(58, 49, 42, 0.055);

    scroll-snap-align:
        center;

    transition:
        transform var(--transition),
        box-shadow var(--transition);
}

.treatment:hover {
    transform:
        translateY(-5px);

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

.treatment__image {
    position: relative;

    overflow: hidden;

    height: 225px;
}

.treatment__image::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            transparent 60%,
            rgba(37, 31, 26, 0.15)
        );

    pointer-events: none;
}

.treatment__image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 650ms var(--ease);
}

.treatment:hover
.treatment__image img {
    transform: scale(1.04);
}

.treatment__body {
    position: relative;

    padding:
        26px
        25px
        28px;
}

.treatment__number {
    display: block;

    margin-bottom: 15px;

    color:
        var(--brand);

    font-size: 10px;
    font-weight: 700;

    letter-spacing:
        0.18em;
}

.treatment h3 {
    margin:
        0
        0
        10px;

    color:
        var(--graphite);

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size: 29px;
    font-weight: 600;

    line-height: 1.05;
}

.treatment p {
    margin: 0;

    color:
        var(--taupe);

    font-size: 13px;

    line-height: 1.72;
}


/* ============================================================
   NOSSA CLÍNICA
   Seção escura
   ============================================================ */

.clinic {
    position: relative;

    overflow: hidden;

    color: #ffffff;

    background:
        radial-gradient(
            circle at 90% 10%,
            rgba(154, 107, 63, 0.24),
            transparent 32%
        ),
        linear-gradient(
            135deg,
            #3e3a36,
            var(--graphite-deep)
        );
}

.clinic::before {
    content: "";

    position: absolute;

    top: -300px;
    left: -260px;

    width: 600px;
    height: 600px;

    border:
        1px solid
        rgba(255, 255, 255, 0.06);

    border-radius: 50%;
}

.clinic__intro {
    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        minmax(0, 1.15fr)
        minmax(260px, 0.55fr);

    align-items: end;

    gap: 80px;

    margin-bottom: 46px;
}

.clinic__intro h2 {
    max-width: 700px;

    margin: 0;

    color: #ffffff;

    font-size:
        clamp(
            42px,
            4.5vw,
            64px
        );

    line-height: 0.98;

    letter-spacing:
        -0.03em;
}

.clinic__intro h2 em {
    color:
        #d8b794;

    font-weight: 500;
}

.clinic__intro > p {
    margin:
        0
        0
        5px;

    color:
        rgba(255, 255, 255, 0.62);

    font-size: 14px;

    line-height: 1.8;
}

.carousel--clinic
.carousel__track {
    padding-top: 24px;
}

.carousel--clinic
.carousel__item {
    flex-basis:
        clamp(
            330px,
            43vw,
            540px
        );

    background:
        rgba(255, 255, 255, 0.05);

    border-color:
        rgba(255, 255, 255, 0.12);

    box-shadow:
        0 22px 60px
        rgba(0, 0, 0, 0.18);
}

.carousel--clinic
.carousel__item img {
    height:
        clamp(
            330px,
            38vw,
            460px
        );
}


/* ============================================================
   AVALIAÇÕES
   ============================================================ */

.reviews-section {
    background:
        #ffffff;
}

.review {
    flex:
        0 0
        min(
            410px,
            80vw
        );

    min-height: 270px;

    display: flex;
    flex-direction: column;

    padding:
        28px
        28px
        26px;

    border:
        1px solid
        var(--line);

    border-radius:
        24px;

    background:
        var(--cream-light);

    scroll-snap-align:
        center;

    transition:
        transform var(--transition),
        box-shadow var(--transition);
}

.review:hover {
    transform:
        translateY(-4px);

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

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

    gap: 16px;

    margin-bottom: 24px;
}

.stars {
    color:
        var(--brand);

    font-size: 14px;

    letter-spacing: 3px;
}

.google-label {
    display: inline-flex;
    align-items: center;

    padding:
        5px
        9px;

    color:
        var(--taupe);

    background:
        #ffffff;

    border:
        1px solid
        var(--line);

    border-radius:
        999px;

    font-size: 10px;
    font-weight: 700;

    letter-spacing:
        0.08em;

    text-transform: uppercase;
}

.review blockquote {
    flex-grow: 1;

    margin:
        0
        0
        24px;

    padding: 0;

    color:
        var(--taupe);

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size: 21px;

    line-height: 1.45;
}

.review strong {
    color:
        var(--graphite);

    font-size: 12px;

    letter-spacing:
        0.025em;
}


/* ============================================================
   CTA GRANDE
   ============================================================ */

.consultation-cta {
    padding:
        90px
        0;

    background:
        linear-gradient(
            135deg,
            var(--brand-deep),
            var(--brand),
            #ab7d52
        );

    color:
        #ffffff;
}

.consultation-cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 60px;
}

.consultation-cta h2 {
    max-width: 760px;

    margin:
        0
        0
        16px;

    color:
        #ffffff;

    font-size:
        clamp(
            40px,
            5vw,
            62px
        );

    line-height: 0.98;

    letter-spacing:
        -0.03em;
}

.consultation-cta h2 em {
    color:
        #eedcca;

    font-weight: 500;
}

.consultation-cta p {
    max-width: 600px;

    margin: 0;

    color:
        rgba(255, 255, 255, 0.72);

    font-size: 14px;
}


/* ============================================================
   LOCALIZAÇÃO
   ============================================================ */

.location {
    background:
        var(--cream);
}

.location__grid {
    display: grid;

    grid-template-columns:
        minmax(280px, 0.65fr)
        minmax(0, 1.35fr);

    align-items: center;

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

.location__content h2 {
    margin:
        0
        0
        26px;

    color:
        var(--graphite);

    font-size:
        clamp(
            43px,
            4.8vw,
            62px
        );

    line-height: 0.98;
}

.location__content h2 em {
    color:
        var(--brand);

    font-weight: 500;
}

.location__address {
    max-width: 400px;

    margin-bottom: 14px;

    color:
        var(--graphite);

    font-size: 15px;
    font-weight: 600;

    line-height: 1.7;
}

.location__description {
    max-width: 390px;

    margin-bottom: 28px;

    color:
        var(--taupe);

    font-size: 14px;

    line-height: 1.7;
}


/* ============================================================
   MAPA
   ============================================================ */

.map-embed {
    position: relative;

    overflow: hidden;

    border:
        1px solid
        var(--line);

    border-radius:
        30px;

    background:
        var(--cream-light);

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

.map-embed iframe {
    display: block;

    width: 100%;
}

.map-embed__cta {
    position: absolute;

    right: 18px;
    bottom: 18px;

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

    min-height: 42px;

    padding:
        9px
        17px;

    color:
        #ffffff;

    background:
        rgba(52, 49, 46, 0.9);

    border:
        1px solid
        rgba(255, 255, 255, 0.16);

    border-radius:
        999px;

    box-shadow:
        0 10px 28px
        rgba(0, 0, 0, 0.15);

    backdrop-filter:
        blur(10px);

    font-size: 12px;
    font-weight: 600;

    transition:
        background var(--transition),
        transform var(--transition);
}

.map-embed__cta:hover {
    background:
        var(--brand);

    transform:
        translateY(-2px);
}


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

.footer {
    padding:
        68px
        0
        20px;

    color:
        rgba(255, 255, 255, 0.68);

    background:
        #302e2b;
}

.footer__main {
    display: grid;

    grid-template-columns:
        1.5fr
        0.55fr
        0.8fr;

    gap: 70px;

    padding-bottom: 54px;
}

.footer__logo {
    width: auto;
    height: 60px;

    max-width: 270px;

    margin-bottom: 22px;

    object-fit: contain;
}

.footer__brand p {
    max-width: 340px;

    margin: 0;

    color:
        rgba(255, 255, 255, 0.48);

    font-size: 13px;

    line-height: 1.7;
}

.footer__links,
.footer__contact {
    display: flex;
    flex-direction: column;

    gap: 9px;
}

.footer__links strong,
.footer__contact strong {
    margin-bottom: 8px;

    color: #ffffff;

    font-size: 11px;

    letter-spacing:
        0.12em;

    text-transform: uppercase;
}

.footer__links a,
.footer__contact span {
    color:
        rgba(255, 255, 255, 0.54);

    font-size: 13px;

    transition:
        color var(--transition);
}

.footer__links a:hover {
    color:
        #d8b794;
}

.footer__whatsapp {
    margin-top: 12px;

    color:
        #d8b794;

    font-size: 13px;
    font-weight: 700;

    transition:
        color var(--transition),
        transform var(--transition);
}

.footer__whatsapp:hover {
    color:
        #ffffff;
}

.footer__bottom {
    padding-top: 20px;

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

    text-align: center;
}

.footer__bottom span {
    color:
        rgba(255, 255, 255, 0.36);

    font-size: 11px;
}


/* ============================================================
   WHATSAPP FLUTUANTE
   ============================================================ */

.wa-float {
    position: fixed;

    right: 22px;
    bottom: 22px;

    z-index: 900;

    display: flex;
    align-items: center;

    gap: 10px;

    padding:
        8px
        14px
        8px
        8px;

    color: #ffffff;

    background:
        #2c2a27;

    border:
        1px solid
        rgba(255, 255, 255, 0.12);

    border-radius:
        999px;

    box-shadow:
        0 14px 38px
        rgba(30, 27, 24, 0.24);

    transition:
        transform var(--transition),
        background var(--transition),
        box-shadow var(--transition);
}

.wa-float:hover {
    background:
        var(--brand);

    transform:
        translateY(-3px);

    box-shadow:
        0 18px 45px
        rgba(64, 44, 27, 0.28);
}

.wa-float img {
    width: 37px;
    height: 37px;

    object-fit: contain;

    user-select: none;

    -webkit-user-drag: none;
}

.wa-float__label {
    padding-right: 2px;

    font-size: 11px;
    font-weight: 700;

    letter-spacing:
        0.025em;
}


/* ============================================================
   VOLTAR AO TOPO
   ============================================================ */

.top-float {
    position: fixed;

    left: 22px;
    bottom: 22px;

    z-index: 850;

    width: 45px;
    height: 45px;

    display: grid;
    place-items: center;

    color:
        var(--graphite);

    background:
        rgba(251, 249, 245, 0.92);

    border:
        1px solid
        var(--line-medium);

    border-radius: 50%;

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

    backdrop-filter:
        blur(10px);

    font-size: 18px;

    transition:
        opacity var(--transition),
        transform var(--transition),
        background var(--transition);
}

.top-float:hover {
    color: #ffffff;

    background:
        var(--brand);

    transform:
        translateY(-3px);
}

.top-float.is-hidden {
    opacity: 0;

    pointer-events: none;

    transform:
        translateY(12px);
}


/* ============================================================
   LIGHTBOX
   ============================================================ */

.lightbox {
    position: fixed;

    inset: 0;

    z-index: 3000;

    display: none;
}

.lightbox.is-open {
    display: block;
}

.lightbox__overlay {
    position: absolute;

    inset: 0;

    background:
        rgba(33, 30, 27, 0.92);

    backdrop-filter:
        blur(12px);
}

.lightbox__content {
    position: relative;

    z-index: 2;

    width:
        min(
            1050px,
            calc(100% - 48px)
        );

    height: 100%;

    margin:
        0
        auto;

    display: grid;
    place-items: center;

    padding:
        50px
        0;
}

.lightbox__content img {
    width: auto;
    height: auto;

    max-width: 100%;
    max-height: calc(100vh - 100px);

    border-radius:
        20px;

    object-fit: contain;

    box-shadow:
        0 35px 100px
        rgba(0, 0, 0, 0.45);
}

.lightbox__close {
    position: fixed;

    top: 24px;
    right: 28px;

    z-index: 10;

    width: 46px;
    height: 46px;

    display: grid;
    place-items: center;

    padding: 0;

    color: #ffffff;

    background:
        rgba(255, 255, 255, 0.08);

    border:
        1px solid
        rgba(255, 255, 255, 0.22);

    border-radius: 50%;

    backdrop-filter: blur(10px);

    cursor: pointer;

    font-size: 17px;

    transition:
        background var(--transition),
        transform var(--transition);
}

.lightbox__close:hover {
    background:
        var(--brand);

    transform:
        rotate(5deg);
}


/* ============================================================
   IMAGENS / UX
   ============================================================ */

.carousel img {
    cursor: zoom-in;

    user-select: none;

    -webkit-user-drag: none;
}


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

:focus-visible {
    outline:
        3px solid
        rgba(154, 107, 63, 0.3);

    outline-offset: 4px;
}


/* ============================================================
   TABLETS
   ============================================================ */

@media (max-width: 1050px) {

    :root {
        --header-height: 78px;
    }


    /* HEADER */

    .nav {
        display: none;
    }

    .menu-toggle {
        display: block;
    }


    /* SOBRE */

    .about {
        gap: 65px;
    }


    /* SECTIONS */

    .section {
        padding:
            90px
            0;
    }


    /* TITULOS */

    .section-heading,
    .clinic__intro {
        gap: 45px;
    }


    /* FOOTER */

    .footer__main {
        grid-template-columns:
            1.3fr
            0.6fr
            0.8fr;

        gap: 42px;
    }
}


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

@media (max-width: 820px) {

    .container {
        width:
            min(
                100% - 36px,
                var(--container)
            );
    }


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

    .brand__logo-img {
        height: 45px;

        max-width: 200px;
    }

    .header__cta {
        display: none;
    }


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

    .hero {
        min-height: 720px;
    }

    .hero__overlay {
        background:
            linear-gradient(
                90deg,
                rgba(37, 34, 31, 0.92),
                rgba(37, 34, 31, 0.65)
            ),
            linear-gradient(
                0deg,
                rgba(37, 34, 31, 0.38),
                transparent
            );
    }

    .hero__content {
        padding:
            calc(var(--header-height) + 55px)
            0
            70px;
    }

    .hero h1 {
        max-width: 570px;

        font-size:
            clamp(
                48px,
                10vw,
                70px
            );
    }

    .hero__lead {
        max-width: 510px;
    }

    .hero__trust {
        gap: 17px;

        margin-top: 38px;
    }


    /* ========================================================
       INTRO
       ======================================================== */

    .intro {
        padding:
            74px
            0
            56px;
    }


    /* ========================================================
       SOBRE
       ======================================================== */

    .about {
        grid-template-columns: 1fr;

        gap: 65px;
    }

    .about__media {
        width:
            min(
                560px,
                100%
            );

        margin:
            0
            auto;
    }

    .about__signature {
        right: 18px;
        bottom: 22px;
    }

    .about__content {
        max-width: 680px;
    }


    /* ========================================================
       HEADINGS
       ======================================================== */

    .section-heading,
    .clinic__intro {
        grid-template-columns: 1fr;

        gap: 22px;
    }

    .section-heading > p,
    .section-heading > div + p,
    .clinic__intro > p {
        max-width: 620px;
    }


    /* ========================================================
       CARROSSEL
       ======================================================== */

    .carousel {
        grid-template-columns:
            40px
            minmax(0, 1fr)
            40px;

        gap: 9px;
    }

    .carousel__btn {
        width: 40px;
        height: 40px;

        font-size: 25px;
    }


    /* ========================================================
       CTA CASOS
       ======================================================== */

    .section-cta {
        flex-direction: column;

        gap: 14px;
    }


    /* ========================================================
       CTA PRINCIPAL
       ======================================================== */

    .consultation-cta__inner {
        flex-direction: column;
        align-items: flex-start;

        gap: 34px;
    }


    /* ========================================================
       LOCALIZAÇÃO
       ======================================================== */

    .location__grid {
        grid-template-columns: 1fr;

        gap: 46px;
    }


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

    .footer__main {
        grid-template-columns:
            1fr
            1fr;

        gap:
            45px
            36px;
    }

    .footer__brand {
        grid-column:
            1 / -1;
    }
}


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

@media (max-width: 560px) {

    :root {
        --header-height: 70px;
    }

    .container {
        width:
            calc(100% - 28px);
    }


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

    .brand__logo-img {
        height: 38px;

        max-width: 175px;
    }

    .menu-toggle {
        width: 42px;
        height: 42px;
    }


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

    .hero {
        min-height:
            max(
                680px,
                90vh
            );
    }

    .hero__bg img {
        object-position:
            58%
            center;
    }

    .hero__content {
        padding:
            calc(var(--header-height) + 42px)
            0
            50px;
    }

    .hero h1 {
        margin-bottom: 20px;

        font-size:
            clamp(
                45px,
                14vw,
                61px
            );

        line-height: 0.96;
    }

    .hero__lead {
        font-size: 15px;

        line-height: 1.65;
    }

    .hero__cta {
        flex-direction: column;

        align-items: stretch;
    }

    .hero__cta .btn {
        width: 100%;
    }


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

    .hero__trust {
        width: 100%;

        justify-content: space-between;

        gap: 9px;
    }

    .hero__trust-divider {
        height: 33px;
    }

    .hero__trust-item strong {
        font-size: 16px;
    }

    .hero__trust-item span {
        font-size: 8px;
    }


    /* ========================================================
       INTRO
       ======================================================== */

    .intro {
        padding:
            62px
            0
            48px;
    }

    .intro__statement {
        font-size:
            36px;
    }


    /* ========================================================
       SEÇÕES
       ======================================================== */

    .section {
        padding:
            72px
            0;
    }

    .section-heading {
        margin-bottom: 34px;
    }

    .section-heading h2,
    .clinic__intro h2 {
        font-size:
            42px;
    }


    /* ========================================================
       SOBRE
       ======================================================== */

    .about {
        gap: 54px;
    }

    .about__image-wrap {
        border-radius:
            120px
            120px
            20px
            20px;
    }

    .about__image {
        height: 500px;
    }

    .about__signature {
        position: relative;

        right: auto;
        bottom: auto;

        width:
            calc(100% - 28px);

        min-width: 0;

        margin:
            -38px
            auto
            0;
    }

    .about__content h2 {
        font-size:
            45px;
    }

    .about__text p {
        font-size: 14px;

        line-height: 1.76;
    }

    .about__cta .btn {
        width: 100%;
    }


    /* ========================================================
       CARROSSEL
       No celular as setas ficam sobre o conteúdo.
       Isso aumenta bastante a área útil.
       ======================================================== */

    .carousel {
        display: block;
    }

    .carousel__track {
        margin-inline:
            -14px;

        padding:
            20px
            30px
            30px;
    }

    .carousel__btn {
        position: absolute;

        top: 50%;

        z-index: 10;

        transform:
            translateY(-50%);

        width: 42px;
        height: 42px;

        background:
            rgba(251, 249, 245, 0.94);

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

    .carousel__btn:hover {
        transform:
            translateY(-50%)
            scale(1.04);
    }

    .carousel__btn--prev {
        left: -5px;
    }

    .carousel__btn--next {
        right: -5px;
    }

    .carousel__btn--light {
        color:
            var(--graphite);

        background:
            rgba(251, 249, 245, 0.94);

        border-color:
            transparent;
    }


    /* ========================================================
       CASOS
       ======================================================== */

    [data-carousel="cases"]
    .carousel__item {
        flex-basis:
            min(
                76vw,
                285px
            );
    }

    [data-carousel="cases"]
    .carousel__item img {
        height: 380px;
    }


    /* ========================================================
       ANTES E DEPOIS
       ======================================================== */

    .before-after-gallery
    .carousel__item {
        flex-basis:
            min(
                82vw,
                360px
            );
    }

    .before-after-gallery
    .carousel__item img {
        height: 440px;
    }


    /* ========================================================
       TRATAMENTOS
       ======================================================== */

    .treatment {
        flex-basis:
            min(
                82vw,
                320px
            );
    }


    /* ========================================================
       CLÍNICA
       ======================================================== */

    .clinic__intro {
        margin-bottom: 30px;
    }

    .carousel--clinic
    .carousel__item {
        flex-basis:
            83vw;
    }

    .carousel--clinic
    .carousel__item img {
        height: 360px;
    }


    /* ========================================================
       REVIEWS
       ======================================================== */

    .review {
        flex-basis:
            82vw;

        min-height: 290px;

        padding:
            24px
            22px;
    }

    .review blockquote {
        font-size: 19px;
    }


    /* ========================================================
       CTA
       ======================================================== */

    .consultation-cta {
        padding:
            70px
            0;
    }

    .consultation-cta h2 {
        font-size:
            43px;
    }

    .consultation-cta .btn {
        width: 100%;
    }


    /* ========================================================
       MAPA
       ======================================================== */

    .map-embed {
        border-radius: 22px;
    }

    .map-embed iframe {
        height: 390px;
    }

    .map-embed__cta {
        right: 12px;
        bottom: 12px;
    }


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

    .footer {
        padding-top: 54px;
    }

    .footer__main {
        grid-template-columns: 1fr;

        gap: 36px;

        padding-bottom: 38px;
    }

    .footer__brand {
        grid-column: auto;
    }

    .footer__logo {
        height: 50px;
    }


    /* ========================================================
       WHATSAPP
       ======================================================== */

    .wa-float {
        right: 14px;
        bottom: 14px;

        padding: 7px;

        border-radius: 50%;
    }

    .wa-float img {
        width: 39px;
        height: 39px;
    }

    .wa-float__label {
        display: none;
    }


    /* ========================================================
       TOPO
       ======================================================== */

    .top-float {
        left: 14px;
        bottom: 14px;

        width: 43px;
        height: 43px;
    }


    /* ========================================================
       LIGHTBOX
       ======================================================== */

    .lightbox__content {
        width:
            calc(100% - 24px);

        padding:
            60px
            0
            30px;
    }

    .lightbox__content img {
        max-height:
            calc(100vh - 90px);

        border-radius: 14px;
    }

    .lightbox__close {
        top: 14px;
        right: 14px;
    }
}


/* ============================================================
   TELAS MUITO PEQUENAS
   ============================================================ */

@media (max-width: 380px) {

    .hero h1 {
        font-size: 43px;
    }

    .hero__trust {
        gap: 6px;
    }

    .hero__trust-item strong {
        font-size: 15px;
    }

    .hero__trust-item span {
        letter-spacing:
            0.03em;
    }

    .section-heading h2,
    .clinic__intro h2,
    .about__content h2,
    .consultation-cta h2 {
        font-size: 39px;
    }
}


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

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

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;

        animation-duration:
            0.01ms !important;

        animation-iteration-count:
            1 !important;

        transition-duration:
            0.01ms !important;
    }
}
/* ============================================================
   COMPARADOR ANTES / DEPOIS
   ============================================================ */

.comparison {
    max-width: 920px;
    margin: 0 auto 88px;
}


/* ============================================================
   LABELS
   ============================================================ */

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

    margin-bottom: 14px;
    padding: 0 6px;

    color: var(--taupe);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 0.16em;

    text-transform: uppercase;
}


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

.before-after {
    position: relative;

    width: 100%;
    aspect-ratio: 16 / 9;

    overflow: hidden;

    border-radius: 30px;

    background: var(--cream-dark);

    border:
        1px solid
        rgba(154, 107, 63, 0.17);

    box-shadow:
        0 30px 80px
        rgba(58, 49, 42, 0.15);

    cursor: ew-resize;

    touch-action: pan-y;

    user-select: none;
}


/* ============================================================
   IMAGENS
   ============================================================ */

.before-after__image {
    position: absolute;

    inset: 0;

    overflow: hidden;
}

.before-after__image img {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    user-select: none;

    -webkit-user-drag: none;

    pointer-events: none;
}


/* Depois fica por baixo */

.before-after__image--after {
    z-index: 1;
}


/* Antes fica por cima e é cortado */

.before-after__image--before {
    z-index: 2;

    clip-path:
        inset(
            0
            50%
            0
            0
        );
}


/* ============================================================
   RANGE INVISÍVEL
   Continua permitindo acessibilidade pelo teclado.
   ============================================================ */

.before-after__range {
    position: absolute;

    inset: 0;

    z-index: 5;

    width: 100%;
    height: 100%;

    margin: 0;

    opacity: 0;

    cursor: ew-resize;
}


/* ============================================================
   DIVISÓRIA
   ============================================================ */

.before-after__handle {
    position: absolute;

    top: 0;
    bottom: 0;
    left: 50%;

    z-index: 4;

    width: 2px;

    transform:
        translateX(-50%);

    background:
        rgba(255, 255, 255, 0.94);

    box-shadow:
        0 0 12px
        rgba(0, 0, 0, 0.12);

    pointer-events: none;
}


/* ============================================================
   BOLINHA
   ============================================================ */

.before-after__handle-icon {
    position: absolute;

    top: 50%;
    left: 50%;

    width: 58px;
    height: 58px;

    display: grid;
    place-items: center;

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

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #aa7a4c,
            var(--brand-dark)
        );

    border:
        4px solid
        rgba(255, 255, 255, 0.92);

    border-radius: 50%;

    box-shadow:
        0 12px 34px
        rgba(52, 39, 28, 0.3);

    font-family:
        Georgia,
        serif;

    font-size: 17px;

    font-weight: 700;

    letter-spacing: 2px;
}


/* ============================================================
   TEXTO ARRASTE
   ============================================================ */

.comparison__hint {
    margin: 16px 0 0;

    color: var(--taupe-light);

    text-align: center;

    font-size: 11px;
    font-weight: 600;

    letter-spacing: 0.1em;

    text-transform: uppercase;
}


/* ============================================================
   MAIS RESULTADOS
   ============================================================ */

.results-heading {
    margin-bottom: 28px;
}

.results-heading h3 {
    margin: 0;

    color: var(--graphite);

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size:
        clamp(
            32px,
            4vw,
            43px
        );

    font-weight: 600;

    line-height: 1.05;
}


/* ============================================================
   ESTADO DE ARRASTE
   ============================================================ */

.before-after.is-dragging {
    cursor: grabbing;
}

.before-after.is-dragging
.before-after__handle-icon {
    transform:
        translate(-50%, -50%)
        scale(1.05);
}


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

@media (max-width: 560px) {

    .comparison {
        margin-bottom: 65px;
    }


    .before-after {
        aspect-ratio: 4 / 3;

        border-radius: 22px;
    }


    .before-after__handle-icon {
        width: 50px;
        height: 50px;

        border-width: 3px;

        font-size: 15px;
    }


    .comparison__labels {
        font-size: 9px;
    }


    .results-heading {
        margin-bottom: 20px;
    }

}