/* ═══════════════════════════════════════════════════════════
   GOLD INCISION — STYLE.CSS
   Mobile-first · Montserrat · Gold Theme
═══════════════════════════════════════════════════════════ */

/* ── TOKENS ─────────────────────────────────────────────── */
:root {
    --gold-light: #DA9C51;
    --gold: #9E621B;
    --gold-dark: #38230A;
    --gold-grad: linear-gradient(135deg, #DA9C51 0%, #9E621B 50%, #DA9C51 100%);
    --gold-shine: linear-gradient(45deg, #DA9C51 0%, #9E621B 40%, #DA9C51 70%, #9E621B 100%);

    --text: #2A1D1D;
    --text-muted: #7A7A7A;
    --text-light: #4F4F4F;

    --bg-white: #FFFFFF;
    --bg-light: #F7F7F7;
    --bg-mid: #EFEFEF;
    --bg-beige: #F6EBDA;
    --bg-cream: #EBEDED;

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-pill: 999px;

    --shadow-sm: 0 2px 10px rgba(0, 0, 0, .06);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, .10);
    --shadow-gold: 0 4px 20px rgba(158, 98, 27, .35);

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font: 'Montserrat', sans-serif;

    --container: 1200px;
    --section-v: clamp(60px, 10vw, 120px);
}

/* ── RESET ───────────────────────────────────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font);
    color: var(--text);
    background: var(--bg-white);
    overflow-x: hidden;
    line-height: 1.6;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font: inherit;
}

/* ── CONTAINER ───────────────────────────────────────────── */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 60px);
}

/* ── FADE-UP ANIMATION ───────────────────────────────────── */
.fade-up {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up--delay {
    transition-delay: 0.18s;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── TYPOGRAPHY ──────────────────────────────────────────── */
.section__heading {
    font-size: clamp(24px, 4vw, 42px);
    font-weight: 600;
    letter-spacing: -1px;
    line-height: 1.2;
    color: var(--text);
    margin-bottom: 20px;
}

.section__heading em {
    font-style: normal;
    background: var(--gold-grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section__heading--center {
    font-size: clamp(22px, 3.5vw, 38px);
    font-weight: 600;
    letter-spacing: -0.8px;
    line-height: 1.25;
    color: var(--text);
    text-align: center;
    margin-bottom: 16px;
}

.section__body {
    font-size: clamp(15px, 1.5vw, 18px);
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 24px;
}

.section__body--center {
    font-size: clamp(15px, 1.4vw, 18px);
    color: var(--text-muted);
    text-align: center;
    line-height: 1.7;
    max-width: 680px;
    margin: 0 auto 40px;
}

.section__body--sm {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 28px;
}

.section__body--highlight {
    font-size: 16px;
    font-weight: 500;
    color: var(--text);
    line-height: 1.6;
    margin-bottom: 28px;
    padding-left: 16px;
    border-left: 3px solid var(--gold);
}

/* ── BADGES ──────────────────────────────────────────────── */
.badge {
    display: inline-block;
    padding: 8px 20px;
    border-radius: var(--radius-pill);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.6px;
    background: rgba(42, 29, 29, .08);
    color: var(--text-muted);
    margin-bottom: 20px;
}

.badge--dark {
    background: rgba(42, 29, 29, .10);
    color: #2A1D1D;
}

.badge--gold-outline {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
}

.badge--sm {
    font-size: 11px;
    padding: 6px 16px;
}

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 36px;
    border-radius: var(--radius-pill);
    font-family: var(--font);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    transition: var(--transition);
    cursor: pointer;
    white-space: nowrap;
    min-height: 54px;
}

.btn--lg {
    font-size: 16px;
    padding: 18px 48px;
}

.btn--gold {
    background: var(--gold-shine);
    background-size: 300% 200%;
    background-position: 0 0;
    color: #fff;
    box-shadow: var(--shadow-gold), 0 -3px 1px 0 rgba(0, 0, 0, .18) inset, 0 1px 12px 0 rgba(255, 197, 108, .7) inset;
    animation: goldShine 3.4s cubic-bezier(.2, .5, .9, .6) 2s infinite normal none;
}

.btn--gold:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 28px rgba(158, 98, 27, .5), 0 -3px 1px 0 rgba(0, 0, 0, .18) inset;
}

.btn--outline {
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
    padding: 14px 32px;
    min-height: 52px;
}

.btn--outline:hover {
    background: var(--gold-shine);
    color: #fff;
    border-color: transparent;
    box-shadow: var(--shadow-gold);
    transform: translateY(-1px);
}

.btn--whatsapp svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
    flex-shrink: 0;
}

@keyframes goldShine {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 200% 0;
    }
}

/* ── SECTION BASE ────────────────────────────────────────── */
.section {
    padding: var(--section-v) 0;
    overflow: hidden;
}

.section--light {
    background: var(--bg-light);
}

.section--mid {
    background: var(--bg-mid);
}

.section--beige {
    background: var(--bg-beige);
}

.section--cream {
    background: var(--bg-cream);
}

.section__label {
    text-align: center;
    margin-bottom: 32px;
}

.section__center {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 48px;
}

.section__arrow {
    display: flex;
    justify-content: center;
    margin-top: -1px;
    margin-bottom: 32px;
}

/* Section grid layout — sempre 1 coluna; seções específicas overrideiam */
.section__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: start;
}

/* Desktop: ainda 1 coluna, só aumenta o gap */
@media (min-width: 900px) {
    .section__grid {
        grid-template-columns: 1fr;
        gap: 56px;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

    /* Remove qualquer inversão de ordem — DOM order é a ordem correta */
    .section__grid--reverse>* {
        order: unset !important;
    }
}

/* ══════════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════════ */
.hero {
    background-color: #FDFAF6;
    padding-top: clamp(48px, 8vw, 100px);
    padding-bottom: 0;
    overflow: hidden;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 80% 0%, rgba(218, 156, 81, .10) 0%, transparent 60%),
        radial-gradient(ellipse at 20% 100%, rgba(158, 98, 27, .06) 0%, transparent 50%);
    pointer-events: none;
}

.hero__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    align-items: flex-end;
}

@media (min-width: 900px) {
    .hero__inner {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
        padding-bottom: 0;
    }
}

.hero__content {
    padding: 0 0 clamp(40px, 6vw, 60px);
    text-align: center;
}

@media (min-width: 900px) {
    .hero__content {
        text-align: left;
        padding-bottom: clamp(60px, 8vw, 100px);
    }
}

.hero__logo {
    width: clamp(180px, 50%, 300px);
    height: auto;
    margin: 0 auto 24px;
}

@media (min-width: 900px) {
    .hero__logo {
        margin: 0 0 24px;
    }
}

.hero__title {
    font-size: clamp(24px, 3.8vw, 42px);
    font-weight: 600;
    letter-spacing: -1px;
    line-height: 1.2;
    color: var(--text);
    margin-bottom: 20px;
}

.hero__title em {
    font-style: normal;
    background: var(--gold-grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__desc {
    font-size: clamp(15px, 1.4vw, 17px);
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 900px) {
    .hero__desc {
        margin-left: 0;
        margin-right: 0;
    }
}

.hero__slogan {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    opacity: 0.9;
}

.hero__actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

@media (min-width: 900px) {
    .hero__actions {
        justify-content: flex-start;
    }
}

.hero__image {
    display: none;
}

@media (min-width: 900px) {
    .hero__image {
        display: flex;
        align-items: flex-end;
        justify-content: center;
    }

    .hero__image img {
        width: 100%;
        max-width: 480px;
        height: 600px;
        object-fit: cover;
        object-position: top center;
        border-radius: 24px 24px 0 0;
        box-shadow: var(--shadow-md);
    }
}

/* Mobile hero image — dentro do hero__content, entre h1 e descricao */
.hero__image--mobile {
    display: block;
    width: 82%;
    max-width: 310px;
    margin: 8px auto 28px;
    border-radius: 20px 20px 0 0;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.hero__image--mobile img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    /* 15%: move o enquadramento para baixo na imagem, subindo a cabeça visualmente */
    object-position: center 15%;
    display: block;
}

@media (min-width: 900px) {
    .hero__image--mobile {
        display: none;
    }
}

/* ══════════════════════════════════════════════════════════
   CAROUSEL
══════════════════════════════════════════════════════════ */
/* dobra2: carousel EM CIMA no mobile, dois colunas no desktop */
.dobra2__carousel {
    margin-bottom: 36px;
    border-radius: var(--radius-lg);
    /* sem overflow:hidden aqui — o corte é feito em cada slide */
    box-shadow: var(--shadow-md);
}

.dobra2__text {
    padding: 0;
}

@media (min-width: 900px) {

    /* Desktop: esconde o carousel, texto centralizado */
    .dobra2__carousel {
        display: none;
    }

    .dobra2__text {
        max-width: 720px;
        margin: 0 auto;
        text-align: center;
    }

    .dobra2__text .btn {
        margin: 0 auto;
    }

    .dobra2__text .cta-block__btns {
        justify-content: center;
    }
}

/* Carousel container */
.hero-swiper {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    width: 100%;
}

/* Cada slide */
.hero-swiper .swiper-slide {
    overflow: hidden;
}

/* Mobile: foto inteira sem corte */
.hero-swiper .swiper-slide img {
    width: 100%;
    height: auto;
    display: block;
}

/* Desktop: altura fixa diretamente nas imagens */
@media (min-width: 900px) {
    .hero-swiper .swiper-slide img {
        width: 100%;
        height: 460px;
        object-fit: cover;
        object-position: center top;
        display: block;
    }
}

.hero-swiper .swiper-button-prev,
.hero-swiper .swiper-button-next {
    color: #fff;
    background: rgba(0, 0, 0, .35);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    backdrop-filter: blur(6px);
}

.hero-swiper .swiper-button-prev::after,
.hero-swiper .swiper-button-next::after {
    font-size: 16px;
    font-weight: 700;
}

.hero-swiper .swiper-pagination-bullet-active {
    background: var(--gold);
}

/* ══════════════════════════════════════════════════════════
   TÉCNICAS
══════════════════════════════════════════════════════════ */
.tecnicas {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

/* A partir de 600px: 2 colunas para os cards de técnica */
@media (min-width: 600px) {
    .tecnicas {
        grid-template-columns: 1fr 1fr;
        max-width: 700px;
        margin: 0 auto;
    }
}

.tecnica-card {
    background: #fff;
    border: 1px solid #fff;
    border-radius: var(--radius-md);
    padding: 28px 24px 24px;
    box-shadow: -10px 8px 24px rgba(0, 0, 0, .08);
    transition: var(--transition);
}

.tecnica-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.tecnica-card__icon {
    margin: 0 0 20px;
    /* Removemos o margin negativo — era só para layout 2-col */
}

.tecnica-card h3 {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: -0.4px;
    margin-bottom: 8px;
    color: var(--text);
}

.tecnica-card p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ══════════════════════════════════════════════════════════
   GRAUS DE CELULITE
══════════════════════════════════════════════════════════ */
.graus {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 56px;
}

@media (min-width: 700px) {
    .graus {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
}

.grau-card {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, .06);
    transition: var(--transition);
}

.grau-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.grau-card__img img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

@media (min-width: 700px) {
    .grau-card__img img {
        height: 180px;
    }
}

.grau-card__info {
    padding: 16px 14px;
}

.grau-card__label {
    display: inline-block;
    background: var(--gold-grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.grau-card__info p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ══════════════════════════════════════════════════════════
   CTA BLOCKS
══════════════════════════════════════════════════════════ */
.cta-block {
    text-align: center;
}

.cta-block__text {
    font-size: clamp(17px, 2vw, 22px);
    font-weight: 400;
    line-height: 1.5;
    color: var(--text);
    margin-bottom: 32px;
}

.cta-block__btns {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    margin-top: 8px;
}

@media (min-width: 600px) {
    .cta-block__btns {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }

    .section__grid .cta-block__btns {
        justify-content: flex-start;
    }
}

/* Mobile: btns full width */
@media (max-width: 599px) {
    .btn {
        width: 100%;
        max-width: 100%;
        white-space: normal;
    }
}

/* ══════════════════════════════════════════════════════════
   PASSOS
══════════════════════════════════════════════════════════ */
.passo-title {
    font-size: clamp(18px, 2.5vw, 26px);
    font-weight: 500;
    color: var(--text-muted);
}

.steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 56px;
}

@media (min-width: 600px) {
    .steps {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1000px) {
    .steps {
        grid-template-columns: repeat(4, 1fr);
    }
}

.step-card {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 28px 24px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, .06);
    position: relative;
    text-align: center;
    transition: var(--transition);
}

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.step-card__num {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.step-card__num::before,
.step-card__num::after {
    content: '';
    height: 1px;
    flex: 1;
    background: linear-gradient(to right, transparent, rgba(158, 98, 27, .3));
}

.step-card__num::after {
    background: linear-gradient(to left, transparent, rgba(158, 98, 27, .3));
}

.step-card h3 {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: -0.3px;
    margin-bottom: 10px;
    color: var(--text);
}

.step-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ══════════════════════════════════════════════════════════
   BIOESTIMULAÇÃO
══════════════════════════════════════════════════════════ */
/* ══════════════════════════════════════════════════════════
   BIOESTIMULAÇÃO
══════════════════════════════════════════════════════════ */
/* Foto da bio: centralizada, largura generosa */
.bio__image img {
    width: 100%;
    max-width: 560px;
    height: auto;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    margin: 0 auto;
    display: block;
}

/* Desktop: limita a altura da foto */
@media (min-width: 900px) {
    .bio__image img {
        max-height: 500px;
        object-position: center 20%;
    }
}

.check-list {
    margin-bottom: 24px;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(74, 74, 74, .15);
    font-size: 16px;
    font-weight: 500;
    color: var(--text);
    line-height: 1.5;
}

.check-list li:last-child {
    border-bottom: none;
}

.check-list__icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--gold-grad);
    position: relative;
    margin-top: 2px;
}

.check-list__icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -60%) rotate(45deg);
    width: 6px;
    height: 10px;
    border: 2px solid #fff;
    border-top: none;
    border-left: none;
}

/* ══════════════════════════════════════════════════════════
   APÓS O PROCEDIMENTO
══════════════════════════════════════════════════════════ */
.pos-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: clamp(32px, 5vw, 64px);
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    gap: 28px;
    max-width: 860px;
    margin: 0 auto;
}

@media (min-width: 700px) {
    .pos-card {
        flex-direction: row;
        align-items: flex-start;
    }

    .pos-card__icon {
        flex-shrink: 0;
        margin-top: 4px;
    }
}

.pos-card h2 {
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 600;
    letter-spacing: -0.6px;
    margin-bottom: 20px;
}

.pos-card p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 14px;
}

.pos-card p:last-child {
    margin-bottom: 0;
}

/* ══════════════════════════════════════════════════════════
   DRA. CAMILLY
══════════════════════════════════════════════════════════ */
/* Título acima da foto */
.dra__intro {
    margin-bottom: 28px;
    text-align: center;
}

.dra__intro .section__heading {
    margin-bottom: 0;
}

/* Grid sempre 1 coluna: foto no topo, texto abaixo */
.dra__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    max-width: 760px;
    margin: 0 auto;
}

/* Desktop: garante que nao ha inversao de ordem */
@media (min-width: 900px) {
    .dra__grid .dra__image {
        order: unset;
    }

    .dra__grid .section__text {
        order: unset;
    }

    .dra__intro {
        text-align: center;
    }
}

.dra__image img {
    width: 100%;
    max-width: 560px;
    height: clamp(340px, 55vw, 500px);
    object-fit: cover;
    object-position: top center;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    margin: 0 auto;
    border: 1px solid rgba(151, 151, 151, .45);
    display: block;
}

/* ══════════════════════════════════════════════════════════
   MAPA
══════════════════════════════════════════════════════════ */
.map-block {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.map-block iframe {
    display: block;
    width: 100%;
}

.map-block__address {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 24px;
    background: var(--bg-white);
    font-size: 15px;
    color: var(--text-light);
}

.map-block__address svg {
    width: 20px;
    height: 20px;
    fill: var(--gold);
    flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════ */
.footer {
    background: var(--bg-cream);
    padding: 48px 0 32px;
    border-top: 1px solid rgba(0, 0, 0, .06);
}

.footer__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    text-align: center;
}

.footer__logo {
    width: 160px;
    height: auto;
}

.footer__links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

@media (min-width: 600px) {
    .footer__links {
        flex-direction: row;
        gap: 32px;
    }
}

.footer__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--gold);
    text-decoration: none;
    transition: var(--transition);
    letter-spacing: 0.3px;
}

.footer__link:hover {
    color: var(--gold-dark);
    transform: translateY(-1px);
}

.footer__link svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
    flex-shrink: 0;
}

.footer__copy {
    font-size: 12px;
    color: var(--text-muted);
}

/* ══════════════════════════════════════════════════════════
   WHATSAPP FAB
══════════════════════════════════════════════════════════ */
.whatsapp-fab {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    width: 58px;
    height: 58px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, .5);
    transition: var(--transition);
    opacity: 0;
    transform: scale(0.8);
}

.whatsapp-fab.visible {
    opacity: 1;
    transform: scale(1);
}

.whatsapp-fab:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37, 211, 102, .6);
}

.whatsapp-fab svg {
    width: 30px;
    height: 30px;
    fill: #fff;
}

/* ══════════════════════════════════════════════════════════
   MOBILE REFINEMENTS (< 600px)
══════════════════════════════════════════════════════════ */
@media (max-width: 599px) {
    .hero__content {
        padding-bottom: 32px;
    }

    .hero__title {
        font-size: 26px;
    }

    .hero__logo {
        width: 200px;
    }

    .section {
        padding: 52px 0;
    }

    .section__grid {
        gap: 32px;
    }

    .tecnica-card__icon {
        margin-top: -24px;
    }

    .tecnica-card h3 {
        font-size: 18px;
    }

    .grau-card__img img {
        height: 120px;
    }

    .step-card {
        text-align: left;
    }

    .pos-card {
        padding: 28px 20px;
    }

    .map-block iframe {
        height: 280px;
    }

    .whatsapp-fab {
        bottom: 16px;
        right: 16px;
        width: 52px;
        height: 52px;
    }

    .whatsapp-fab svg {
        width: 26px;
        height: 26px;
    }
}

/* ══════════════════════════════════════════════════════════
   TABLET (600–900px)
══════════════════════════════════════════════════════════ */
@media (min-width: 600px) and (max-width: 899px) {
    .hero__content {
        text-align: center;
        padding-bottom: 40px;
    }

    .hero__logo {
        margin: 0 auto 20px;
    }

    .hero__desc {
        margin-left: auto;
        margin-right: auto;
    }

    .hero__actions {
        justify-content: center;
    }
}