/* ==================================================
   FONTS LOCAIS
================================================== */

@font-face {
    font-family: 'Leckerli One';
    src: url('../fonts/LeckerliOne-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Playfair Display';
    src: url('../fonts/PlayfairDisplay-VariableFont_wght.woff2') format('woff2');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

/* ==================================================
   TOKENS
================================================== */

:root {
    --rose: #b5838d;
    --rose-dark: #9d6b75;
    --rose-darker: #7d5a62;
    --blush: #e4b7c0;
    --blush-light: #f3dee2;
    --cream: #f8f4f6;
    --plum: #6d6875;
    --ink: #3d3a3f;
    --text: #555555;
    --text-muted: #7a7a7a;
    --shadow-sm: 0 10px 25px rgba(109, 104, 117, 0.1);
    --shadow-md: 0 22px 48px rgba(109, 104, 117, 0.16);
    --radius-lg: 28px;
    --radius-md: 20px;
    --font-serif: 'Playfair Display', serif;
    --font-script: 'Leckerli One', cursive;
    --ease: cubic-bezier(.16, 1, .3, 1);
}

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

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    position: relative;
    background: #ffffff;
    color: var(--text);
    font-family: var(--font-serif);
    line-height: 1.6;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1 0 auto;
}

.footer-liliane {
    flex-shrink: 0;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    background: url('../img/plano-de-fundo.webp') center center / cover no-repeat;
    opacity: 0.06;
    mix-blend-mode: multiply;
    pointer-events: none;
}

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

h1, h2, h3 {
    font-family: var(--font-serif);
}

a {
    color: inherit;
}

.container {
    max-width: 1180px;
    margin-inline: auto;
    padding-inline: clamp(20px, 5vw, 32px);
}

.section {
    padding-block: clamp(72px, 10vw, 128px);
}

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

.text-center { text-align: center; }
.mt-2 { margin-top: .5rem; }
.mt-3 { margin-top: 1rem; }
.mt-5 { margin-top: 3rem; }

.eyebrow {
    display: inline-block;
    font-size: 12.5px;
    letter-spacing: .14em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--rose-dark);
    background: var(--blush-light);
    padding: 8px 18px;
    border-radius: 999px;
    margin-bottom: 18px;
}

.eyebrow-light {
    color: #fff;
    background: rgba(255, 255, 255, .16);
    border: 1px solid rgba(255, 255, 255, .35);
}

.section-title {
    font-weight: 700;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.15;
    color: var(--ink);
    margin: 0 0 14px;
}

.section-title-light {
    color: #fff;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 16px;
    max-width: 520px;
}

.section-head {
    text-align: center;
    margin-bottom: 56px;
}

.section-head .section-subtitle {
    margin-inline: auto;
}

.accent-script {
    font-family: var(--font-script);
    color: var(--rose);
}

.highlight-quote {
    display: block;
    margin-top: 18px;
    font-size: 21px;
    line-height: 1.5;
}

.highlight-quote-light {
    color: var(--blush-light);
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border: 0;
    cursor: pointer;
    font-family: var(--font-serif);
    transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .35s ease;
}

.btn-primary {
    background: linear-gradient(135deg, var(--rose), var(--rose-dark));
    color: #ffffff;
    box-shadow: 0 14px 30px rgba(181, 131, 141, .35);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(181, 131, 141, .45);
}

.btn-ghost-light {
    background: rgba(255, 255, 255, .1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .5);
    backdrop-filter: blur(6px);
}

.btn-ghost-light:hover {
    background: rgba(255, 255, 255, .22);
    transform: translateY(-3px);
}

/* ==================================================
   COOKIE BANNER
================================================== */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, .08);
    padding: 20px;
    z-index: 999;
    display: none;
}

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

.cookie-content p {
    margin: 0;
    font-size: 14px;
    color: var(--text);
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.btn-accept {
    background-color: var(--rose);
    color: #fff;
    border: none;
    padding: 9px 20px;
    border-radius: 20px;
    cursor: pointer;
    font-family: var(--font-serif);
    transition: .3s;
}

.btn-accept:hover {
    background-color: var(--rose-dark);
}

.btn-reject {
    background-color: #eee;
    border: none;
    padding: 9px 20px;
    border-radius: 20px;
    cursor: pointer;
    font-family: var(--font-serif);
}

.cookie-content a {
    color: var(--rose);
    font-weight: 600;
    text-decoration: none;
}

.cookie-content a:hover {
    text-decoration: underline;
}

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

.site-header {
    position: fixed;
    inset-inline: 0;
    top: 0;
    z-index: 200;
    padding-block: 16px;
    background: rgba(228, 183, 192, .82);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transition: transform .4s var(--ease), background .4s ease, box-shadow .4s ease, padding .4s ease;
}

.site-header.is-scrolled {
    background: rgba(255, 255, 255, .88);
    box-shadow: var(--shadow-sm);
    padding-block: 10px;
}

.site-header.header-hidden {
    transform: translateY(-100%);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.brand img {
    border-radius: 50%;
}

.brand span {
    font-family: var(--font-script);
    font-size: 22px;
    color: var(--rose-dark);
    letter-spacing: .5px;
}

.site-nav ul {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link {
    position: relative;
    text-decoration: none;
    color: var(--ink);
    font-size: 15px;
    padding-block: 4px;
    transition: color .3s ease;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: -4px;
    height: 2px;
    background: var(--rose);
    transition: right .35s var(--ease);
}

.nav-link:hover,
.nav-link.active {
    color: var(--rose-dark);
}

.nav-link:hover::after,
.nav-link.active::after {
    right: 0;
}

.nav-toggle {
    display: none;
    background: none;
    border: 0;
    cursor: pointer;
    padding: 0;
    width: 26px;
    height: 20px;
    flex-direction: column;
    justify-content: space-between;
    z-index: 210;
}

.nav-toggle span {
    display: block;
    height: 2px;
    width: 100%;
    background: var(--ink);
    border-radius: 2px;
    transition: transform .35s var(--ease), opacity .35s ease;
}

@media (max-width: 860px) {
    .nav-toggle {
        display: flex;
    }

    .site-nav {
        position: fixed;
        inset: 0;
        top: 0;
        background: #ffffff;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-8%);
        transition: opacity .4s ease, visibility .4s ease, transform .4s var(--ease);
    }

    .site-nav.is-open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .site-nav ul {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

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

    .nav-toggle.is-open span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

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

    .nav-toggle.is-open span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
}

/* ==================================================
   ANIMAÇÕES DE ENTRADA (HERO)
================================================== */

@keyframes heroIn {
    to {
        opacity: 1;
        filter: blur(0);
        transform: translateY(0);
    }
}

@keyframes heroZoom {
    from { transform: scale(1.08); }
    to { transform: scale(1.18); }
}

@keyframes scrollCue {
    0% { opacity: 1; transform: translate(-50%, 0); }
    70% { opacity: 0; transform: translate(-50%, 14px); }
    100% { opacity: 0; transform: translate(-50%, 14px); }
}

.hero-in {
    opacity: 0;
    filter: blur(16px);
    transform: translateY(30px);
    animation: heroIn 1s var(--ease) both;
}

.eyebrow.hero-in { animation-delay: .2s; }
.hero-title.hero-in { animation-delay: .35s; }
.hero-lead.hero-in { animation-delay: .55s; }
.hero-actions.hero-in { animation-delay: .75s; }
.hero-scroll-cue.hero-in { animation-delay: 1.1s; }

/* ==================================================
   ANIMAÇÕES DE SCROLL (BLUR + ROTATE)
================================================== */

.reveal {
    opacity: 0;
    filter: blur(24px);
    transform: translateY(64px) scale(.95);
    transition: opacity 1.1s var(--ease), filter 1.1s var(--ease), transform 1.1s var(--ease);
    will-change: opacity, filter, transform;
}

.reveal.is-visible {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0) scale(1);
}

.reveal-rotate {
    opacity: 0;
    filter: blur(28px);
    transform: translateY(40px) rotate(-9deg) scale(.86);
    transition: opacity 1.15s var(--ease), filter 1.15s var(--ease), transform 1.15s var(--ease);
    will-change: opacity, filter, transform;
}

.reveal-rotate.is-visible {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0) rotate(0) scale(1);
}

.process-grid .process-card:nth-child(2) { transition-delay: .1s; }
.process-grid .process-card:nth-child(3) { transition-delay: .2s; }
.process-grid .process-card:nth-child(4) { transition-delay: .3s; }

.procedimentos-gallery .proc-item:nth-child(2) { transition-delay: .15s; }

.contato-grid .contato-card:nth-child(2) { transition-delay: .1s; }
.contato-grid .contato-card:nth-child(3) { transition-delay: .2s; }

@media (prefers-reduced-motion: reduce) {
    .reveal, .reveal-rotate, .hero-in, .hero-media {
        transition: none !important;
        animation: none !important;
        opacity: 1 !important;
        filter: none !important;
        transform: none !important;
    }
}

/* ==================================================
   SEÇÃO INÍCIO / HERO
================================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #3d3a3f;
}

.hero-media {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: min(60%, 900px);
    overflow: hidden;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transform: scale(1.05);
}

.hero-scrim {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(60% 60% at 22% 55%, rgba(120, 40, 150, .55) 0%, rgba(120, 40, 150, 0) 70%),
        linear-gradient(90deg, rgba(40, 16, 48, .96) 0%, rgba(40, 16, 48, .88) 32%, rgba(40, 16, 48, .5) 52%, rgba(40, 16, 48, 0) 68%),
        linear-gradient(180deg, rgba(0, 0, 0, .1) 0%, rgba(0, 0, 0, .32) 100%);
}

.hero .container {
    margin-inline: 0;
    max-width: none;
    padding-inline: clamp(24px, 8vw, 110px);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #ffffff;
    max-width: 720px;
    padding-block: 170px 130px;
}

.hero-title {
    font-size: clamp(38px, 6vw, 68px);
    line-height: 1.1;
    font-weight: 700;
    margin: 0 0 22px;
}

.hero-lead {
    font-size: clamp(16px, 2vw, 19px);
    line-height: 1.75;
    color: rgba(255, 255, 255, .86);
    max-width: 560px;
    margin: 0 0 36px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.hero-scroll-cue {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    width: 26px;
    height: 44px;
    border: 2px solid rgba(255, 255, 255, .6);
    border-radius: 20px;
}

.hero-scroll-cue span {
    position: absolute;
    top: 8px;
    left: 50%;
    width: 4px;
    height: 8px;
    background: #fff;
    border-radius: 2px;
    transform: translateX(-50%);
    animation: scrollCue 1.8s ease infinite;
}

@media (max-width: 860px) {
    .hero-media {
        width: 100%;
    }

    .hero-scrim {
        background:
            radial-gradient(90% 55% at 30% 65%, rgba(120, 40, 150, .5) 0%, rgba(120, 40, 150, 0) 70%),
            linear-gradient(180deg, rgba(40, 16, 48, .55) 0%, rgba(40, 16, 48, .82) 55%, rgba(40, 16, 48, .96) 100%);
    }
}

/* ==================================================
   SEÇÃO TRATAMENTOS
================================================== */

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 28px;
}

.process-card {
    background: #ffffff;
    border: 1px solid rgba(109, 104, 117, .08);
    border-radius: var(--radius-lg);
    padding: 38px 28px;
    box-shadow: var(--shadow-sm);
    transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}

.process-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.process-number {
    display: block;
    font-family: var(--font-script);
    font-size: 54px;
    color: var(--blush);
    line-height: 1;
    margin-bottom: 18px;
}

.process-card h3 {
    font-size: 19px;
    color: var(--plum);
    margin: 0 0 12px;
}

.process-card p {
    font-size: 14.5px;
    line-height: 1.7;
    color: var(--text);
    margin: 0;
}

/* ==================================================
   SEÇÃO QUEM SOU
================================================== */

.quem-sou-section {
    position: relative;
    overflow: hidden;
    background: var(--cream);
}

.quem-sou-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.quem-sou-bg img {
    position: absolute;
    top: 10%;
    right: 5%;
    width: 40%;
    height: 78%;
    object-fit: cover;
    object-position: center 22%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.quem-sou-grid {
    position: relative;
    z-index: 1;
}

.quem-sou-text {
    max-width: 560px;
    background: rgba(255, 255, 255, .95);
    border-radius: var(--radius-lg);
    padding: clamp(28px, 4vw, 52px);
    box-shadow: var(--shadow-md);
}

.quem-sou-text p {
    line-height: 1.85;
    margin-bottom: 18px;
    color: var(--text);
}

.highlight-box {
    background: var(--blush-light);
    border-left: 4px solid var(--rose);
    border-radius: var(--radius-md);
    padding: 28px;
    margin-top: 8px;
}

@media (max-width: 900px) {
    .quem-sou-section {
        padding-top: 0;
    }

    .quem-sou-bg {
        position: relative;
        height: 320px;
    }

    .quem-sou-bg img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-position: center 25%;
    }

    .quem-sou-grid {
        margin-top: -56px;
    }

    .quem-sou-text {
        max-width: none;
    }
}

/* ==================================================
   SEÇÃO PROCEDIMENTOS
================================================== */

.procedimentos {
    position: relative;
    background: url('../img/fundo-procedimentos.webp') center center / cover fixed no-repeat;
    color: #ffffff;
}

.procedimentos-scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(61, 58, 63, .85), rgba(157, 107, 117, .55));
}

.procedimentos .container {
    position: relative;
    z-index: 1;
}

.procedimentos-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

.procedimentos-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.proc-item {
    position: relative;
    border: 0;
    padding: 0;
    cursor: pointer;
    background: none;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.proc-item img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    object-position: bottom;
    transition: transform .5s var(--ease);
}

.proc-item:hover img {
    transform: scale(1.08);
}

.proc-item-label {
    position: absolute;
    left: 16px;
    bottom: 16px;
    background: rgba(61, 58, 63, .55);
    backdrop-filter: blur(4px);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 999px;
}

.procedimentos-text p {
    color: rgba(255, 255, 255, .84);
    line-height: 1.8;
    margin-bottom: 16px;
}

@media (max-width: 900px) {
    .procedimentos-grid {
        grid-template-columns: 1fr;
    }

    .procedimentos-gallery {
        order: -1;
    }

    .proc-item img {
        height: 240px;
    }
}

@media (max-width: 520px) {
    .procedimentos-gallery {
        grid-template-columns: 1fr;
    }
}

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

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(20, 18, 20, .92);
    opacity: 0;
    visibility: hidden;
    transition: opacity .35s ease, visibility .35s ease;
}

.lightbox.is-open {
    opacity: 1;
    visibility: visible;
}

.lightbox-stage {
    max-width: min(900px, 90vw);
    max-height: 82vh;
}

.lightbox-stage img {
    width: 100%;
    height: 100%;
    max-height: 82vh;
    object-fit: contain;
    border-radius: 12px;
}

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 28px;
    background: none;
    border: 0;
    color: #fff;
    font-size: 34px;
    line-height: 1;
    cursor: pointer;
}

.lightbox-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .3);
    color: #fff;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 16px;
    cursor: pointer;
    transition: background .3s ease;
}

.lightbox-arrow:hover {
    background: rgba(255, 255, 255, .22);
}

.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }
.lightbox-arrow[hidden] { display: none; }

@media (max-width: 640px) {
    .lightbox-close { top: 14px; right: 16px; }
    .lightbox-arrow { width: 40px; height: 40px; }
    .lightbox-prev { left: 10px; }
    .lightbox-next { right: 10px; }
}

/* ==================================================
   SEÇÃO CLÍNICA / CAROUSEL
================================================== */

.clinic-carousel {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.clinic-track {
    position: relative;
    height: 560px;
}

.clinic-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity .8s ease;
}

.clinic-slide.is-active {
    opacity: 1;
    visibility: visible;
}

.clinic-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(.72);
}

.clinic-caption {
    position: absolute;
    left: 50%;
    bottom: 14%;
    transform: translateX(-50%);
    text-align: center;
    color: #fff;
    max-width: 640px;
    padding-inline: 20px;
}

.clinic-caption h3 {
    font-size: clamp(24px, 3vw, 34px);
    margin: 0 0 10px;
}

.clinic-caption p {
    font-size: 16px;
    margin: 0;
}

.clinic-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, .15);
    border: 1px solid rgba(255, 255, 255, .4);
    color: #fff;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 2;
    transition: background .3s ease;
}

.clinic-arrow:hover {
    background: rgba(255, 255, 255, .3);
}

.clinic-prev { left: 20px; }
.clinic-next { right: 20px; }

.clinic-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 2;
}

.clinic-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 0;
    background: rgba(255, 255, 255, .5);
    cursor: pointer;
    transition: background .3s ease, transform .3s ease;
}

.clinic-dot.is-active {
    background: #fff;
    transform: scale(1.25);
}

@media (max-width: 640px) {
    .clinic-track { height: 400px; }
}

/* ==================================================
   SEÇÃO CONTATO
================================================== */

.section-contato {
    background: linear-gradient(180deg, var(--cream) 0%, #ffffff 100%);
}

.contato-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    margin-bottom: 48px;
}

.contato-card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: 38px 26px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}

.contato-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.contato-icon {
    width: 30px;
    height: 30px;
    fill: var(--rose);
    margin-bottom: 16px;
}

.contato-card h3 {
    color: var(--rose-dark);
    font-size: 18px;
    margin: 0 0 12px;
}

.contato-card p {
    color: var(--text);
    margin: 0 0 6px;
}

.mapa-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

@media (max-width: 860px) {
    .contato-grid {
        grid-template-columns: 1fr;
    }
}

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

.footer-liliane {
    background-color: var(--blush);
    padding: 36px 20px;
    text-align: center;
}

.footer-texto {
    font-size: 14px;
    color: #6b5158;
    line-height: 1.8;
}

.footer-texto a {
    color: #6b5158;
    text-decoration: underline;
}

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

.botoes-fixos {
    transition: opacity .4s ease, transform .4s ease;
}

.botoes-fixos.hide-fixed {
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
}

.instagram-fixo {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 150;
}

.instagram-fixo a {
    display: flex;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background: radial-gradient(circle at 30% 107%,
            #fdf497 0%,
            #fdf497 5%,
            #fd5949 45%,
            #d6249f 60%,
            #285AEB 90%);
    box-shadow: var(--shadow-sm);
    transition: transform .3s ease;
}

.instagram-fixo a:hover {
    transform: scale(1.1);
}

.icon-instagram {
    width: 26px;
    fill: #fff;
}

#whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    z-index: 150;
    cursor: pointer;
    filter: drop-shadow(0 8px 18px rgba(0, 0, 0, .25));
    transition: transform .3s ease;
}

#whatsapp-btn:hover {
    transform: scale(1.1);
}

/* ==================================================
   PÁGINAS LEGAIS (política / termos)
================================================== */

.legal {
    padding-block: 150px 90px;
    min-height: 100vh;
}

.legal h1 {
    font-size: clamp(30px, 4vw, 42px);
    color: var(--ink);
    margin-bottom: 24px;
}

.legal h2 {
    font-size: 19px;
    color: var(--rose-dark);
    margin: 32px 0 10px;
}

.legal p {
    line-height: 1.8;
    color: var(--text);
    margin: 0 0 6px;
}

.legal .btn {
    margin-top: 28px;
}

/* ==================================================
   RESPONSIVIDADE GERAL
================================================== */

@media (max-width: 768px) {
    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }
}
