/* ========================================
   RENATA MOCELIN NAILS ACADEMY
   STYLE.CSS — VERSÃO CONSOLIDADA
======================================== */

/* ========================================
   DESIGN SYSTEM
======================================== */

:root {
    --preto: #0B0B0C;
    --preto-suave: #1A1B1F;
    --grafite: #3B3C41;

    --dourado: #D4AF37;
    --dourado-claro: #E0C45A;

    --champagne: #F5E6C8;
    --branco: #FFFFFF;

    --cinza-claro: #C5C5C7;
    --cinza-texto: #98999E;

    --borda: rgba(212, 175, 55, 0.22);

    --largura-site: 1200px;
    --raio-card: 22px;
}


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

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

html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
    font-family: Arial, Helvetica, sans-serif;
    background-color: var(--preto);
    color: var(--branco);
    line-height: 1.6;
}

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

button {
    font: inherit;
}

img,
svg {
    max-width: 100%;
}

#servicos,
#sobre {
    scroll-margin-top: 140px;
}


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

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;

    width: 100%;

    background: rgba(11, 11, 12, 0.92);
    border-bottom: 1px solid var(--borda);
    backdrop-filter: blur(16px);

    transition:
        background-color 0.3s ease,
        box-shadow 0.3s ease;
}

.site-header.scrolled {
    background: rgba(11, 11, 12, 0.97);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.22);
}

.navbar {
    width: 100%;
    max-width: var(--largura-site);
    min-height: 125px;

    margin: 0 auto;
    padding: 0 30px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}


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

.marca-link {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo {
    display: block;
    width: auto;
    height: 105px;
    max-width: 210px;
    object-fit: contain;
}


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

.menu {
    display: flex;
    align-items: center;
    gap: 28px;
}

.menu a {
    position: relative;

    padding: 8px 0;

    color: var(--branco);
    font-size: 14px;

    transition: color 0.25s ease;
}

.menu a:not(.menu-cta)::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: 2px;

    width: 0;
    height: 1px;

    background-color: var(--dourado);

    transition: width 0.25s ease;
}

.menu a:not(.menu-cta):hover {
    color: var(--dourado);
}

.menu a:not(.menu-cta):hover::after {
    width: 100%;
}

.menu .menu-cta {
    padding: 11px 20px;

    border: 1px solid var(--dourado);
    border-radius: 999px;

    color: var(--preto);
    background-color: var(--dourado);

    font-weight: 600;

    transition:
        transform 0.25s ease,
        background-color 0.25s ease,
        box-shadow 0.25s ease;
}

.menu .menu-cta:hover {
    background-color: var(--dourado-claro);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.16);
}


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

.menu-toggle {
    display: none;

    width: 46px;
    height: 46px;
    padding: 10px;

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

    background: transparent;

    cursor: pointer;
}

.menu-toggle span {
    display: block;

    width: 100%;
    height: 1px;
    margin: 5px 0;

    background-color: var(--branco);
}


/* ========================================
   ELEMENTOS GERAIS
======================================== */

main section:not(.hero):not(.pagina-interna) {
    max-width: var(--largura-site);
    margin: 0 auto;
    padding: 110px 30px;
}

.secao-etiqueta {
    display: inline-block;

    margin-bottom: 16px;

    color: var(--dourado);

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.secao-cabecalho {
    max-width: 720px;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

h1,
h2 {
    font-family: Georgia, "Times New Roman", serif;
}

h1 {
    color: var(--branco);
    font-weight: 400;
}

h2 {
    margin-bottom: 20px;

    color: var(--branco);

    font-size: clamp(38px, 4vw, 58px);
    font-weight: 400;
    line-height: 1.08;
}

h3 {
    margin-bottom: 12px;
    font-size: 22px;
}

section p {
    max-width: 650px;
    margin-bottom: 28px;

    color: var(--cinza-claro);

    font-size: 17px;
}


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

.botao {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 52px;
    padding: 13px 28px;

    border-radius: 999px;

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

    transition:
        transform 0.25s ease,
        background-color 0.25s ease,
        border-color 0.25s ease,
        color 0.25s ease,
        box-shadow 0.25s ease;
}

.botao:hover {
    transform: translateY(-3px);
}

.botao-principal {
    border: 1px solid var(--dourado);
    background-color: var(--dourado);
    color: var(--preto);
}

.botao-principal:hover {
    background-color: var(--dourado-claro);
    border-color: var(--dourado-claro);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.15);
}

.botao-secundario {
    border: 1px solid var(--dourado);
    background-color: transparent;
    color: var(--dourado);
}

.botao-secundario:hover {
    background-color: var(--dourado);
    color: var(--preto);
}


/* ========================================
   CONTAINER PADRÃO
======================================== */

.container {
    width: 100%;
    max-width: var(--largura-site);
    margin: 0 auto;
    padding-left: 30px;
    padding-right: 30px;
}

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

.hero {
    position: relative;
    overflow: hidden;
    background: #050505;
    border-top: 1px solid rgba(212, 175, 55, 0.16);
    padding: 20px 0 42px;
    isolation: isolate;
}

/* IMAGEM DE FUNDO DO HERO */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        url("../img/hero.jpeg") right center / cover no-repeat;
    filter: saturate(0.96) brightness(0.72);
    transform: scale(1.04);
    opacity: 0.95;
}

/* DEGRADÊ / FADE PARA MESCLAR COM O FUNDO */
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(
            90deg,
            rgba(5, 5, 5, 1) 0%,
            rgba(5, 5, 5, 0.98) 14%,
            rgba(5, 5, 5, 0.94) 28%,
            rgba(5, 5, 5, 0.82) 42%,
            rgba(5, 5, 5, 0.62) 56%,
            rgba(5, 5, 5, 0.36) 68%,
            rgba(5, 5, 5, 0.22) 78%,
            rgba(5, 5, 5, 0.35) 88%,
            rgba(5, 5, 5, 0.72) 100%
        ),
        linear-gradient(
            180deg,
            rgba(5, 5, 5, 0.18) 0%,
            rgba(5, 5, 5, 0.04) 20%,
            rgba(5, 5, 5, 0.00) 42%,
            rgba(5, 5, 5, 0.20) 72%,
            rgba(5, 5, 5, 0.82) 100%
        ),
        radial-gradient(
            circle at 76% 22%,
            rgba(212, 175, 55, 0.12),
            transparent 24%
        ),
        radial-gradient(
            circle at 18% 10%,
            rgba(255, 255, 255, 0.03),
            transparent 18%
        );
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-banner {
    min-height: 680px;
    display: flex;
    align-items: center;
    padding: 68px 0 30px;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
}

.hero-content {
    max-width: 690px;
    width: 100%;
}

.hero-kicker-wrap {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
}

.hero-kicker-line {
    width: 44px;
    height: 1px;
    background: var(--dourado);
    opacity: 0.9;
}

.hero-kicker {
    color: var(--dourado);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: uppercase;
}

.hero-title {
    margin: 0;
    max-width: 760px;
    color: #f7f2eb;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(3.4rem, 7vw, 6rem);
    line-height: 0.93;
    font-weight: 600;
    letter-spacing: -0.03em;
}

.hero-title span {
    color: var(--dourado);
    font-style: italic;
    font-weight: 500;
}

.hero-description {
    max-width: 640px;
    margin: 28px 0 0;
    color: rgba(255, 255, 255, 0.80);
    font-size: 1.22rem;
    line-height: 1.75;
}

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

.hero-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.hero-highlight-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 16px;
    border: 1px solid rgba(212, 175, 55, 0.24);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.03);
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.92rem;
    letter-spacing: 0.02em;
    backdrop-filter: blur(5px);
}

.hero-scroll {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: fit-content;
    margin: 8px auto 0;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.56);
    transition: 0.3s ease;
}

.hero-scroll span {
    font-size: 0.84rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
}

.hero-scroll i {
    display: block;
    width: 1px;
    height: 34px;
    background: linear-gradient(to bottom, var(--dourado), transparent);
}

.hero-scroll:hover {
    color: var(--dourado);
    transform: translateY(2px);
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    padding: 0 30px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    transition: 0.3s ease;
}

.btn-primary {
    background: var(--dourado);
    color: #111;
    border: 1px solid var(--dourado);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 34px rgba(212, 175, 55, 0.20);
    background: var(--dourado-claro);
}

.btn-outline {
    background: transparent;
    color: var(--dourado);
    border: 1px solid rgba(212, 175, 55, 0.70);
}

.btn-outline:hover {
    background: rgba(212, 175, 55, 0.08);
    transform: translateY(-2px);
}

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

@media (max-width: 1280px) {
    .hero-banner {
        min-height: 640px;
        padding: 60px 0 26px;
    }

    .hero-title {
        font-size: clamp(3rem, 6vw, 5.2rem);
    }
}

@media (max-width: 1024px) {
    .hero::before {
        background-position: 72% center;
    }

    .hero::after {
        background:
            linear-gradient(
                180deg,
                rgba(5, 5, 5, 0.34) 0%,
                rgba(5, 5, 5, 0.14) 22%,
                rgba(5, 5, 5, 0.48) 74%,
                rgba(5, 5, 5, 0.88) 100%
            ),
            linear-gradient(
                90deg,
                rgba(5, 5, 5, 0.98) 0%,
                rgba(5, 5, 5, 0.90) 32%,
                rgba(5, 5, 5, 0.62) 58%,
                rgba(5, 5, 5, 0.42) 100%
            );
    }

    .hero-banner {
        min-height: 600px;
        padding: 52px 0 26px;
    }

    .hero-content {
        max-width: 620px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 12px 0 28px;
    }

    .hero::before {
        background-position: center top;
        filter: saturate(0.94) brightness(0.60);
        transform: scale(1.06);
    }

    .hero::after {
        background:
            linear-gradient(
                180deg,
                rgba(5, 5, 5, 0.20) 0%,
                rgba(5, 5, 5, 0.42) 28%,
                rgba(5, 5, 5, 0.78) 70%,
                rgba(5, 5, 5, 0.96) 100%
            ),
            linear-gradient(
                90deg,
                rgba(5, 5, 5, 0.86) 0%,
                rgba(5, 5, 5, 0.64) 45%,
                rgba(5, 5, 5, 0.44) 100%
            );
    }

    .hero-banner {
        min-height: 560px;
        align-items: flex-end;
        padding: 42px 0 24px;
    }

    .hero-kicker-wrap {
        gap: 10px;
        margin-bottom: 18px;
    }

    .hero-kicker-line {
        width: 30px;
    }

    .hero-kicker {
        font-size: 12px !important;
        font-weight: 700 !important;
        letter-spacing: 3px !important;
        line-height: 1.4;
    }


    .hero-title {
        font-size: clamp(2.8rem, 13vw, 4.2rem);
        line-height: 0.94;
    }

    .hero-description {
        margin-top: 20px;
        font-size: 1rem;
        line-height: 1.68;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        margin-top: 28px;
    }

    .btn {
        width: 100%;
    }

    .hero-highlights {
        gap: 10px;
        margin-top: 22px;
    }

    .hero-highlight-chip {
        width: 100%;
        justify-content: flex-start;
        padding: 0 14px;
        min-height: 40px;
        font-size: 0.88rem;
    }

    .hero-scroll span {
        font-size: 0.72rem;
        letter-spacing: 0.20em;
    }

    .hero-scroll i {
        height: 24px;
    }
}

@media (max-width: 480px) {
    .hero-banner {
        min-height: 520px;
        padding: 34px 0 20px;
    }

    .hero-title {
        font-size: clamp(2.5rem, 12vw, 3.6rem);
    }

    .hero-description {
        font-size: 0.96rem;
    }
}


/* ========================================
   DIFERENCIAIS
======================================== */

.diferenciais {
    position: relative;
    z-index: 2;
    margin-top: -38px;
    padding-top: 78px !important;
    overflow: hidden;
    border-top: 1px solid rgba(212, 175, 55, 0.12);
    border-top-left-radius: 34px;
    border-top-right-radius: 34px;
    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(212, 175, 55, 0.10),
            transparent 42%
        ),
        linear-gradient(
            180deg,
            rgba(18, 17, 14, 0.88) 0%,
            rgba(11, 11, 12, 0.98) 95px,
            rgba(11, 11, 12, 1) 180px
        );
}

.diferenciais::before {
    content: "";

    position: absolute;
    top: 0;
    left: 50%;

    width: min(340px, 70vw);
    height: 1px;

    transform: translate(-50%, 0);

    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.92), transparent);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.22);
}

.diferenciais::after {
    content: "";

    position: absolute;
    top: 20px;
    left: 50%;

    width: min(180px, 44vw);
    height: 120px;

    transform: translateX(-50%);

    border-radius: 50%;
    background: rgba(212, 175, 55, 0.08);
    filter: blur(48px);
    pointer-events: none;
}

.diferenciais-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.diferencial-card {
    min-height: 250px;
    padding: 30px;

    border: 1px solid rgba(212, 175, 55, 0.16);
    border-radius: var(--raio-card);

    background:
        linear-gradient(
            145deg,
            rgba(26, 27, 31, 0.86),
            rgba(11, 11, 12, 0.95)
        );

    transition:
        transform 0.3s ease,
        border-color 0.3s ease;
}

.diferencial-card:hover {
    transform: translateY(-7px);
    border-color: rgba(212, 175, 55, 0.62);
}

.diferencial-numero,
.card-indice {
    display: block;

    margin-bottom: 40px;

    color: var(--dourado);

    font-size: 11px;
    letter-spacing: 2px;
}

.diferencial-card h3 {
    color: var(--champagne);
}


/* ========================================
   SERVIÇOS
======================================== */

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.servicos article {
    min-height: 300px;
    padding: 34px;

    border: 1px solid var(--borda);
    border-radius: var(--raio-card);

    background-color: var(--preto-suave);

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.servicos article:hover {
    transform: translateY(-7px);
    border-color: var(--dourado);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.25);
}

.servicos article h3 {
    color: var(--dourado);
}


/* ========================================
   PORTFÓLIO HOME
======================================== */

.portfolio-home {
    position: relative;
}

.portfolio-home-topo {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 60px;

    margin-bottom: 50px;
}

.portfolio-home-topo > div {
    max-width: 720px;
}

.portfolio-home-topo p {
    margin-bottom: 0;
}

.portfolio-home-cta {
    flex-shrink: 0;
}

.portfolio-home-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 250px;
    gap: 18px;
}

.portfolio-home-item {
    position: relative;

    display: block;

    width: 100%;
    height: 100%;

    overflow: hidden;

    margin: 0;
    padding: 0;

    border: 1px solid rgba(212, 175, 55, 0.16);
    border-radius: 20px;

    background-color: var(--preto-suave);

    transition:
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

.portfolio-home-grande {
    grid-row: span 2;
}

/*
   Último card da Home em formato horizontal.
   Ele ocupa as 3 colunas e elimina o espaço vazio.
*/
.portfolio-home-horizontal {
    grid-column: 1 / -1;
    grid-row: span 1;
    min-height: 250px;
}

.portfolio-home-horizontal .portfolio-home-imagem {
    background-position: center 43%;
}

.portfolio-home-imagem {
    position: relative;

    width: 100%;
    height: 100%;

    overflow: hidden;

    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;

    transition:
        transform 0.8s
        cubic-bezier(0.22, 1, 0.36, 1);
}

.portfolio-imagem-01 {
    background-image:
        linear-gradient(
            180deg,
            transparent 35%,
            rgba(11, 11, 12, 0.85)
        ),
        url("../img/portfolio-1.jpg"),
        linear-gradient(145deg, #25231C, #111112);
}

.portfolio-imagem-02 {
    background-image:
        linear-gradient(
            180deg,
            transparent 35%,
            rgba(11, 11, 12, 0.85)
        ),
        url("../img/portfolio-2.jpg"),
        linear-gradient(145deg, #25231C, #111112);
}

.portfolio-imagem-03 {
    background-image:
        linear-gradient(
            180deg,
            transparent 35%,
            rgba(11, 11, 12, 0.85)
        ),
        url("../img/portfolio-3.jpg"),
        linear-gradient(145deg, #25231C, #111112);
}

.portfolio-imagem-04 {
    background-image:
        linear-gradient(
            180deg,
            transparent 35%,
            rgba(11, 11, 12, 0.85)
        ),
        url("../img/portfolio-4.jpg"),
        linear-gradient(145deg, #25231C, #111112);
}

.portfolio-imagem-05 {
    background-image:
        linear-gradient(
            180deg,
            transparent 35%,
            rgba(11, 11, 12, 0.85)
        ),
        url("../img/portfolio-5.jpg"),
        linear-gradient(145deg, #25231C, #111112);
}

.portfolio-imagem-06 {
    background-image:
        linear-gradient(
            180deg,
            transparent 35%,
            rgba(11, 11, 12, 0.85)
        ),
        url("../img/portfolio-6.jpg"),
        linear-gradient(145deg, #25231C, #111112);
}

.portfolio-home-item:hover .portfolio-home-imagem {
    transform: scale(1.045);
}

.portfolio-home-overlay {
    position: absolute;
    inset: 0;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;

    padding: 28px;

    background:
        linear-gradient(
            to top,
            rgba(11, 11, 12, 0.94),
            rgba(11, 11, 12, 0.10) 60%
        );

    transition: background 0.4s ease;
}

.portfolio-home-overlay span {
    margin-bottom: 6px;

    color: var(--dourado);

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.portfolio-home-overlay h3 {
    margin-bottom: 5px;

    color: var(--champagne);

    font-family: Georgia, "Times New Roman", serif;
    font-size: 25px;
    font-weight: 400;

    transform: translateY(8px);

    transition: transform 0.35s ease;
}

.portfolio-home-overlay p {
    max-height: 0;

    margin: 0;

    overflow: hidden;

    opacity: 0;

    color: var(--cinza-claro);

    font-size: 13px;

    transition:
        max-height 0.35s ease,
        opacity 0.35s ease,
        margin-top 0.35s ease;
}

.portfolio-home-item:hover .portfolio-home-overlay h3 {
    transform: translateY(0);
}

.portfolio-home-item:hover .portfolio-home-overlay p {
    max-height: 70px;
    margin-top: 5px;
    opacity: 1;
}

.portfolio-home-item:hover {
    border-color: rgba(212, 175, 55, 0.58);
    box-shadow: 0 20px 55px rgba(0, 0, 0, 0.30);
}

.portfolio-home-rodape {
    margin-top: 40px;

    display: flex;
    justify-content: center;
}


/* ========================================
   FORMATOS / ESTILOS DE UNHAS
   VERSÃO COM PNG TRANSPARENTE
======================================== */

.estilos {
    position: relative;
    overflow: hidden;
}


/* ========================================
   CABEÇALHO
======================================== */

.estilos-cabecalho {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 50px;

    margin-bottom: 50px;
}

.estilos-cabecalho > div:first-child {
    max-width: 720px;
}

.estilos-cabecalho p {
    margin-bottom: 0;
}


/* ========================================
   CONTROLES DO CARROSSEL
======================================== */

.estilos-controles {
    display: flex;
    align-items: center;
    gap: 10px;

    flex-shrink: 0;
}

.estilos-seta {
    width: 50px;
    height: 50px;

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

    padding: 0;

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

    background-color: transparent;
    color: var(--dourado);

    font-size: 21px;

    cursor: pointer;

    transition:
        background-color 0.25s ease,
        border-color 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.estilos-seta:hover {
    background-color: var(--dourado);
    border-color: var(--dourado);
    color: var(--preto);

    transform: translateY(-3px);

    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.14);
}

.estilos-seta:active {
    transform: translateY(0);
}


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

.estilos-carrossel {
    display: flex;
    gap: 20px;

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

    padding: 8px 2px 28px;

    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    overscroll-behavior-inline: contain;
}

.estilos-carrossel::-webkit-scrollbar {
    display: none;
}


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

.estilo-card {
    position: relative;

    flex: 0 0 calc((100% - 40px) / 3);

    min-height: 570px;
    padding: 32px;

    display: flex;
    flex-direction: column;

    overflow: hidden;

    scroll-snap-align: start;

    border: 1px solid rgba(212, 175, 55, 0.18);
    border-radius: var(--raio-card);

    background:
        radial-gradient(
            circle at 84% 12%,
            rgba(212, 175, 55, 0.10),
            transparent 30%
        ),
        linear-gradient(
            145deg,
            rgba(26, 27, 31, 0.97),
            rgba(11, 11, 12, 1)
        );

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

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

.estilo-card:hover {
    transform: translateY(-7px);

    border-color:
        rgba(212, 175, 55, 0.62);

    box-shadow:
        0 26px 65px
        rgba(0, 0, 0, 0.30);
}

.estilo-numero {
    display: block;

    margin-bottom: 25px;

    color: var(--dourado);

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
}

.estilo-card h3 {
    margin-bottom: 14px;

    color: var(--champagne);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 31px;
    font-weight: 400;
    line-height: 1.1;
}

.estilo-card p {
    max-width: 290px;

    margin-bottom: 0;

    color: var(--cinza-claro);

    font-size: 14px;
    line-height: 1.75;
}


/* ========================================
   ÁREA DO PNG
======================================== */

.formato-imagem {
    position: relative;

    width: 100%;
    min-height: 305px;

    margin-top: auto;
    padding: 28px 20px 8px;

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

    isolation: isolate;
}


/* LUZ SUAVE ATRÁS DA IMAGEM */

.formato-imagem::before {
    content: "";

    position: absolute;
    z-index: 0;

    width: 220px;
    height: 220px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(212, 175, 55, 0.12),
            rgba(212, 175, 55, 0.035) 46%,
            transparent 72%
        );

    filter: blur(18px);

    pointer-events: none;

    transition:
        transform 0.35s ease,
        opacity 0.35s ease;
}

.estilo-card:hover .formato-imagem::before {
    transform: scale(1.10);
    opacity: 1;
}


/* PNG TRANSPARENTE */

.formato-imagem img {
    position: relative;
    z-index: 2;

    display: block;

    width: auto;
    height: 270px;

    max-width: 92%;
    max-height: 270px;

    object-fit: contain;
    object-position: center;

    user-select: none;
    -webkit-user-drag: none;

    filter:
        drop-shadow(
            0 16px 28px
            rgba(0, 0, 0, 0.34)
        );

    transition:
        transform 0.35s ease,
        filter 0.35s ease;
}

.estilo-card:hover .formato-imagem img {
    transform:
        translateY(-6px)
        scale(1.035);

    filter:
        drop-shadow(
            0 20px 34px
            rgba(0, 0, 0, 0.38)
        )
        drop-shadow(
            0 0 12px
            rgba(212, 175, 55, 0.14)
        );
}


/*
   Se algum PNG tiver proporção muito diferente,
   você pode adicionar uma dessas classes no <img>:

   class="formato-png formato-png-largo"
   class="formato-png formato-png-alto"
*/

.formato-png {
    display: block;
}

.formato-png-largo {
    width: 88% !important;
    height: auto !important;
}

.formato-png-alto {
    height: 285px !important;
}


/* ========================================
   BASE DOURADA DO CARD
======================================== */

.estilo-card::after {
    content: "";

    position: absolute;

    left: 32px;
    right: 32px;
    bottom: 0;

    height: 1px;

    background:
        linear-gradient(
            to right,
            transparent,
            rgba(212, 175, 55, 0.45),
            transparent
        );

    opacity: 0;

    transform: scaleX(0.5);

    transition:
        opacity 0.35s ease,
        transform 0.35s ease;
}

.estilo-card:hover::after {
    opacity: 1;
    transform: scaleX(1);
}


/* ========================================
   INDICADOR
======================================== */

.estilos-indicador {
    margin-top: 20px;

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

    color: var(--cinza-texto);

    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.estilos-linha {
    position: relative;

    width: 100px;
    height: 1px;

    overflow: hidden;

    background:
        rgba(212, 175, 55, 0.16);
}

.estilos-linha::after {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 45%;
    height: 100%;

    background: var(--dourado);

    animation:
        estiloIndicador
        2.2s
        ease-in-out
        infinite alternate;
}

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

.sobre-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    gap: 80px;
}

.sobre-placeholder {
    min-height: 540px;

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

    border: 1px solid var(--borda);
    border-radius: 220px 220px 24px 24px;

    background:
        radial-gradient(
            circle at center,
            rgba(212, 175, 55, 0.18),
            transparent 45%
        ),
        var(--preto-suave);
}

.sobre-placeholder span {
    color: var(--dourado);

    font-family: Georgia, serif;
    font-size: 96px;
}


/* ========================================
   ACADEMY
======================================== */

.academy {
    position: relative;
}

.academy-conteudo {
    padding: 70px;

    border: 1px solid var(--borda);
    border-radius: 30px;

    background:
        radial-gradient(
            circle at 85% 50%,
            rgba(212, 175, 55, 0.15),
            transparent 35%
        ),
        var(--preto-suave);
}


/* ========================================
   FAQ
======================================== */

.faq-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 90px;

    align-items: start;
}

.faq-introducao {
    position: sticky;
    top: 170px;
}

.faq-lista {
    border-top: 1px solid var(--borda);
}

.faq-item {
    border-bottom: 1px solid rgba(212, 175, 55, 0.18);
}

.faq-pergunta {
    width: 100%;
    min-height: 86px;
    padding: 22px 0;

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

    border: 0;

    background: transparent;
    color: var(--branco);

    text-align: left;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 20px;

    cursor: pointer;
}

.faq-pergunta:hover {
    color: var(--champagne);
}

.faq-icone {
    flex-shrink: 0;

    width: 36px;
    height: 36px;

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

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

    color: var(--dourado);

    font-family: Arial, sans-serif;
    font-size: 21px;

    transition:
        transform 0.3s ease,
        background-color 0.3s ease,
        color 0.3s ease;
}

.faq-resposta {
    display: grid;
    grid-template-rows: 0fr;

    opacity: 0;

    transition:
        grid-template-rows 0.35s ease,
        opacity 0.35s ease;
}

.faq-resposta > div {
    overflow: hidden;
}

.faq-resposta p {
    margin: 0;
    padding: 0 65px 28px 0;

    color: var(--cinza-claro);

    font-size: 15px;
    line-height: 1.8;
}

.faq-item.faq-aberto .faq-resposta {
    grid-template-rows: 1fr;
    opacity: 1;
}

.faq-item.faq-aberto .faq-icone {
    transform: rotate(45deg);

    background-color: var(--dourado);
    color: var(--preto);
}


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

.cta-agendamento {
    text-align: center;
}

.cta-conteudo {
    max-width: 800px;
    margin: 0 auto;
}

.cta-conteudo p {
    margin: 0 auto 30px;
}


/* ========================================
   PÁGINAS INTERNAS
======================================== */

.pagina-interna {
    width: 100%;
    min-height: 480px;

    background:
        radial-gradient(
            circle at 80% 50%,
            rgba(212, 175, 55, 0.16),
            transparent 38%
        ),
        var(--preto);
}

.pagina-interna-conteudo {
    max-width: var(--largura-site);
    min-height: 480px;

    margin: 0 auto;
    padding: 90px 30px;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.pagina-etiqueta {
    margin-bottom: 18px;

    color: var(--dourado);

    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}


/* ========================================
   PORTFÓLIO INTERNO
======================================== */

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;

    margin-top: 40px;
}

.portfolio-card {
    overflow: hidden;
    padding: 0;

    border: 1px solid var(--borda);
    border-radius: var(--raio-card);

    background-color: var(--preto-suave);
}

.portfolio-placeholder {
    min-height: 320px;

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

    background:
        linear-gradient(
            135deg,
            var(--preto-suave),
            var(--preto)
        );

    color: var(--grafite);
}

.portfolio-card h3 {
    padding: 24px;
}


/* ========================================
   AGENDAMENTO
======================================== */

.agendamento-servicos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;

    margin-top: 35px;
}


/* ========================================
   CURSOS
======================================== */

.cursos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;

    margin-top: 40px;
}

.curso-status {
    display: inline-block;

    margin-bottom: 20px;
    padding: 6px 12px;

    border: 1px solid var(--borda);
    border-radius: 999px;

    color: var(--dourado);

    font-size: 13px;
}


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

.site-footer {
    position: relative;

    margin-top: 40px;

    background:
        radial-gradient(
            circle at 15% 20%,
            rgba(212, 175, 55, 0.07),
            transparent 28%
        ),
        var(--preto);

    border-top: 1px solid var(--borda);
}

.footer-conteudo {
    width: 100%;
    max-width: var(--largura-site);

    margin: 0 auto;
    padding: 85px 30px 70px;

    display: grid;
    grid-template-columns: 1.35fr 0.8fr 1fr 1.1fr;
    gap: 65px;
}

.footer-marca {
    max-width: 300px;
}

.footer-logo-link {
    display: inline-flex;
    margin-bottom: 24px;
}

.footer-logo {
    display: block;

    width: auto;
    height: 105px;
    max-width: 210px;

    object-fit: contain;
}

.footer-marca p {
    margin-bottom: 20px;

    color: var(--cinza-claro);

    font-size: 15px;
    line-height: 1.8;
}

.footer-assinatura {
    color: var(--dourado);

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.footer-coluna h3 {
    position: relative;

    margin-bottom: 28px;

    color: var(--champagne);

    font-family: Georgia, "Times New Roman", serif;
    font-size: 19px;
    font-weight: 400;
}

.footer-coluna h3::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -10px;

    width: 28px;
    height: 1px;

    background-color: var(--dourado);
}

.footer-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.footer-links a {
    position: relative;

    color: var(--cinza-claro);

    font-size: 14px;

    transition:
        color 0.25s ease,
        transform 0.25s ease;
}

.footer-links a:hover {
    color: var(--dourado);
    transform: translateX(4px);
}

.footer-horarios {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-horarios div {
    display: flex;
    flex-direction: column;
}

.footer-horarios span {
    margin-bottom: 3px;

    color: var(--cinza-texto);

    font-size: 12px;
}

.footer-horarios strong {
    color: var(--branco);

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

.footer-contato {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.footer-contato div {
    display: flex;
    flex-direction: column;
}

.footer-contato-titulo {
    margin-bottom: 3px;

    color: var(--dourado);

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

.footer-contato-info {
    color: var(--cinza-claro);

    font-size: 13px;
    line-height: 1.6;
}

.footer-link {
    transition: color 0.25s ease;
}

.footer-link:hover {
    color: var(--dourado);
}

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

    margin-top: 28px;

    min-height: 46px;
    padding: 10px 22px;

    border: 1px solid var(--dourado);
    border-radius: 999px;

    background-color: transparent;
    color: var(--dourado);

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

    transition:
        background-color 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.footer-cta:hover {
    background-color: var(--dourado);
    color: var(--preto);

    transform: translateY(-2px);

    box-shadow: 0 12px 28px rgba(212, 175, 55, 0.14);
}

.footer-inferior {
    border-top: 1px solid rgba(212, 175, 55, 0.12);
    background-color: rgba(0, 0, 0, 0.18);
}

.footer-inferior-conteudo {
    width: 100%;
    max-width: var(--largura-site);
    min-height: 80px;

    margin: 0 auto;
    padding: 20px 30px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.footer-inferior p {
    color: var(--cinza-texto);
    font-size: 11px;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 10px;

    color: var(--cinza-texto);

    font-size: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-ponto {
    color: var(--dourado);
}


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

.whatsapp-widget {
    position: fixed;

    z-index: 1500;

    right: 28px;
    bottom: 28px;

    display: flex;
    flex-direction: column;
    align-items: flex-end;

    gap: 14px;

    transition:
        right 0.35s ease,
        left 0.35s ease,
        transform 0.35s ease;
}

/* ========================================
   WHATSAPP COM CARRINHO ABERTO
======================================== */

body.carrinho-aberto .whatsapp-widget {
    right:
        calc(
            min(92vw, 430px)
            + 28px
            + 18px
        );
}


/* ========================================
   BOTÃO PRINCIPAL
======================================== */

.whatsapp-botao {
    width: 176px;
    min-height: 58px;

    padding:
        8px
        18px
        8px
        8px;

    display: flex;

    align-items: center;

    gap: 11px;

    border:
        1px solid
        rgba(212, 175, 55, 0.50);

    border-radius:
        999px;

    background:
        rgba(16, 17, 19, 0.96);

    color:
        var(--branco);

    box-shadow:
        0 18px 45px
        rgba(0, 0, 0, 0.35);

    cursor: pointer;

    backdrop-filter:
        blur(14px);

    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        background 0.25s ease;
}


.whatsapp-botao:hover {
    transform:
        translateY(-3px);

    border-color:
        var(--dourado);

    background:
        #191a1c;
}


.whatsapp-icone {
    width: 42px;
    height: 42px;

    flex:
        0 0 42px;

    display: flex;

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

    border-radius:
        50%;

    background:
        #25D366;

    box-shadow:
        0 0 0 3px
        rgba(37, 211, 102, 0.08);
}


.whatsapp-icone svg {
    width: 24px;
    height: 24px;

    fill:
        #ffffff;
}


.whatsapp-texto {
    font-size:
        13px;

    font-weight:
        700;
}


/* ========================================
   JANELA DE CONVERSA
======================================== */

.whatsapp-card {
    position: absolute;

    right: 0;
    bottom: 74px;

    width: 370px;

    padding: 0;

    overflow: hidden;

    border:
        1px solid
        rgba(212, 175, 55, 0.28);

    border-radius:
        22px;

    background:
        #101113;

    box-shadow:
        0 28px 80px
        rgba(0, 0, 0, 0.58);

    opacity: 0;

    visibility:
        hidden;

    transform:
        translateY(16px)
        scale(0.96);

    transform-origin:
        bottom right;

    transition:
        opacity 0.25s ease,
        transform 0.25s ease,
        visibility 0.25s ease;
}


.whatsapp-card.whatsapp-aberto {
    opacity: 1;

    visibility:
        visible;

    transform:
        translateY(0)
        scale(1);
}


/* ========================================
   CABEÇALHO DA CONVERSA
======================================== */

.whatsapp-chat-header {
    position: relative;

    min-height: 82px;

    padding:
        14px
        50px
        14px
        15px;

    display: flex;

    align-items: center;

    gap: 12px;

    background:
        linear-gradient(
            135deg,
            #18231d,
            #121614
        );

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


.whatsapp-avatar {
    position: relative;

    width: 52px;
    height: 52px;

    flex:
        0 0 52px;
}


.whatsapp-avatar img {
    width: 100%;
    height: 100%;

    display:
        block;

    object-fit:
        cover;

    object-position:
        center 24%;

    border-radius:
        50%;

    border:
        2px solid
        rgba(255, 255, 255, 0.85);
}


.whatsapp-avatar-status {
    position: absolute;

    right: 1px;
    bottom: 1px;

    width: 12px;
    height: 12px;

    border:
        2px solid #18231d;

    border-radius:
        50%;

    background:
        #25D366;
}


.whatsapp-chat-identidade {
    display: flex;

    flex-direction: column;

    gap: 3px;
}


.whatsapp-chat-identidade strong {
    color:
        #ffffff;

    font-size:
        14px;

    font-weight:
        700;
}


.whatsapp-chat-identidade span {
    color:
        rgba(255, 255, 255, 0.62);

    font-size:
        11px;
}


.whatsapp-fechar {
    position: absolute;

    top: 50%;
    right: 16px;

    transform:
        translateY(-50%);

    width: 34px;
    height: 34px;

    display: flex;

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

    border: 0;

    border-radius:
        50%;

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

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

    font-size:
        22px;

    cursor:
        pointer;

    transition:
        background 0.2s ease,
        color 0.2s ease;
}


.whatsapp-fechar:hover {
    background:
        rgba(255, 255, 255, 0.10);

    color:
        #ffffff;
}


/* ========================================
   CORPO DA CONVERSA
======================================== */

.whatsapp-chat-body {
    padding:
        18px;

    background:

        radial-gradient(
            circle at 15% 20%,
            rgba(37, 211, 102, 0.035),
            transparent 24%
        ),

        radial-gradient(
            circle at 90% 82%,
            rgba(212, 175, 55, 0.035),
            transparent 30%
        ),

        #0b0d0c;
}


.whatsapp-chat-dia {
    width: fit-content;

    margin:
        0 auto
        14px;

    padding:
        4px 10px;

    display:
        block;

    border-radius:
        999px;

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

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

    font-size:
        9px;

    text-transform:
        uppercase;

    letter-spacing:
        1px;
}


/* BALÃO */

.whatsapp-mensagem {
    position: relative;

    width:
        fit-content;

    max-width:
        88%;

    padding:
        12px
        14px
        9px;

    border-radius:
        5px
        17px
        17px
        17px;

    background:
        #202421;

    color:
        #f3f3f3;

    box-shadow:
        0 8px 22px
        rgba(0, 0, 0, 0.16);
}


.whatsapp-mensagem::before {
    content: "";

    position:
        absolute;

    top: 0;
    left: -6px;

    width: 12px;
    height: 12px;

    background:
        #202421;

    clip-path:
        polygon(
            100% 0,
            100% 100%,
            0 0
        );
}


.whatsapp-mensagem p {
    margin:
        0
        0
        5px;

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

    font-size:
        13px;

    line-height:
        1.55;
}


.whatsapp-mensagem p:last-of-type {
    margin-bottom:
        2px;
}


.whatsapp-mensagem time {
    display:
        block;

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

    font-size:
        9px;

    text-align:
        right;
}


/* ========================================
   RESPOSTAS RÁPIDAS
======================================== */

.whatsapp-respostas-titulo {
    display:
        block;

    margin:
        17px 0
        9px;

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

    font-size:
        10px;
}


.whatsapp-respostas {
    display:
        grid;

    grid-template-columns:
        1fr 1fr;

    gap:
        8px;
}


.whatsapp-respostas a {
    min-height:
        40px;

    padding:
        8px 10px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    border:
        1px solid
        rgba(37, 211, 102, 0.30);

    border-radius:
        12px;

    background:
        rgba(37, 211, 102, 0.055);

    color:
        #dcefe3;

    font-size:
        11px;

    font-weight:
        600;

    text-align:
        center;

    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}


.whatsapp-respostas a:hover {
    transform:
        translateY(-2px);

    border-color:
        rgba(37, 211, 102, 0.68);

    background:
        rgba(37, 211, 102, 0.10);
}


/* ========================================
   BOTÃO CONTINUAR
======================================== */

.whatsapp-card-botao {
    width:
        calc(100% - 32px);

    min-height:
        48px;

    margin:
        0 16px
        16px;

    padding:
        10px 17px;

    display: flex;

    align-items:
        center;

    justify-content:
        center;

    gap:
        9px;

    border-radius:
        999px;

    background:
        #25D366;

    color:
        #07130b;

    font-size:
        12px;

    font-weight:
        800;

    transition:
        transform 0.2s ease,
        background 0.2s ease;
}


.whatsapp-card-botao svg {
    width:
        20px;

    height:
        20px;

    fill:
        currentColor;
}


.whatsapp-card-botao:hover {
    transform:
        translateY(-2px);

    background:
        #2de070;
}


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

@media (max-width: 768px) {

    .whatsapp-widget {
        right:
            18px;

        bottom:
            18px;
    }


    .whatsapp-texto {
        display:
            none;
    }


    .whatsapp-botao {
        width:
            58px;

        height:
            58px;

        min-height:
            58px;

        padding:
            8px;

        justify-content:
            center;
    }


    .whatsapp-icone {
        width:
            40px;

        height:
            40px;

        flex-basis:
            40px;
    }

}


@media (max-width: 480px) {

    .whatsapp-card {
        position:
            fixed;

        left:
            14px;

        right:
            14px;

        bottom:
            88px;

        width:
            auto;
    }


    .whatsapp-respostas {
        grid-template-columns:
            1fr;
    }

}


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

.hero-entrada {
    opacity: 0;

    animation:
        heroEntrada
        0.9s
        cubic-bezier(0.22, 1, 0.36, 1)
        forwards;
}

.hero-delay-1 {
    animation-delay: 0.10s;
}

.hero-delay-2 {
    animation-delay: 0.22s;
}

.hero-delay-3 {
    animation-delay: 0.36s;
}

.hero-delay-4 {
    animation-delay: 0.50s;
}

.hero-delay-5 {
    animation-delay: 0.64s;
}

.reveal {
    opacity: 0;
    transform: translateY(30px);

    transition:
        opacity 0.75s ease,
        transform 0.75s
        cubic-bezier(0.22, 1, 0.36, 1);
}

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

.reveal-delay-1 {
    transition-delay: 0.08s;
}

.reveal-delay-2 {
    transition-delay: 0.16s;
}

.reveal-delay-3 {
    transition-delay: 0.24s;
}

.reveal-delay-4 {
    transition-delay: 0.32s;
}


/* ========================================
   KEYFRAMES
======================================== */

@keyframes heroEntrada {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

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

@keyframes scrollLinha {
    0%,
    100% {
        opacity: 0.35;
        transform: scaleY(0.65);
    }

    50% {
        opacity: 1;
        transform: scaleY(1);
    }
}

@keyframes estiloIndicador {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(120%);
    }
}


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

@media (max-width: 980px) {

    .navbar {
        min-height: 100px;
    }

    .logo {
        height: 82px;
    }

    .menu-toggle {
        display: block;
    }

    .menu {
        position: absolute;

        top: 100%;
        left: 20px;
        right: 20px;

        display: none;

        padding: 24px;

        flex-direction: column;
        align-items: stretch;
        gap: 5px;

        border: 1px solid var(--borda);
        border-radius: 18px;

        background: rgba(11, 11, 12, 0.98);

        box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    }

    .menu.menu-aberto {
        display: flex;
    }

    .menu a {
        padding: 12px 8px;
    }

    .menu .menu-cta {
        margin-top: 10px;
        text-align: center;
    }

    .hero {
        min-height: auto;
    }

    .hero-conteudo {
        min-height: auto;
        padding-top: 80px;
        grid-template-columns: 1fr;
    }

    .hero-visual {
        min-height: 540px;
        width: min(100%, 680px);
        margin: 0 auto;
        background-position: 54% 16%;
    }

    .diferenciais-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .portfolio-home-topo {
        align-items: flex-start;
        flex-direction: column;
        gap: 25px;
    }

    .portfolio-home-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .estilo-card {
        flex: 0 0 calc((100% - 20px) / 2);
    }

    .formato-imagem {
        min-height: 290px;
    }

    .formato-imagem img {
        height: 250px;
        max-height: 250px;
    }


    .formato-demo {
        min-height: 330px;
    }

    .dedo-luxo {
        transform: scale(0.94);
        transform-origin: bottom center;
    }


    .sobre-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .footer-conteudo {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px;
    }

}


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

@media (max-width: 768px) {

    .navbar {
        padding: 0 20px;
    }

    .logo {
        height: 78px;
        max-width: 170px;
    }

    main section:not(.hero):not(.pagina-interna) {
        padding: 80px 20px;
    }

    .hero-conteudo {
        padding: 60px 20px 42px;
        gap: 50px;
    }

    .hero h1 {
        font-size: clamp(48px, 14vw, 68px);
        letter-spacing: -2px;
    }

    .hero-beneficios {
        gap: 22px;
    }

    .hero-visual {
        min-height: 430px;
        width: 100%;
        background-position: 54% 14%;

        -webkit-mask-image:
            radial-gradient(
                ellipse 92% 92% at 58% 44%,
                #000 0%,
                #000 54%,
                rgba(0, 0, 0, 0.88) 66%,
                rgba(0, 0, 0, 0.45) 78%,
                transparent 97%
            );

        mask-image:
            radial-gradient(
                ellipse 92% 92% at 58% 44%,
                #000 0%,
                #000 54%,
                rgba(0, 0, 0, 0.88) 66%,
                rgba(0, 0, 0, 0.45) 78%,
                transparent 97%
            );
    }

    .hero-scroll {
        display: none;
    }

    .diferenciais-grid,
    .servicos-grid,
    .portfolio-grid,
    .agendamento-servicos,
    .cursos-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-home-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 250px;
    }

    .portfolio-home-grande {
        grid-row: span 2;
    }

    .portfolio-home-overlay {
        padding: 22px;
    }

    .estilos-cabecalho {
        align-items: flex-start;
        flex-direction: column;
        gap: 25px;
    }

    .estilos-controles {
        align-self: flex-end;
    }

    .estilo-card {
        flex: 0 0 82%;
        min-height: 470px;
        padding: 28px;
    }

    .estilo-card h3 {
        font-size: 28px;
    }

    .formato-imagem {
        min-height: 270px;
        padding:
            22px 14px 6px;
    }

    .formato-imagem img {
        height: 230px;
        max-height: 230px;
    }

    .formato-imagem::before {
        width: 190px;
        height: 190px;
    }


    .formato-demo {
        min-height: 320px;
    }

    .dedo-luxo {
        transform: scale(0.90);
        transform-origin: bottom center;
    }

    .estilo-card:hover .dedo-luxo {
        transform:
            translateY(-4px)
            scale(0.91);
    }


    .estilo-card::after {
        left: 28px;
        right: 28px;
    }

    .sobre-placeholder {
        min-height: 430px;
        border-radius: 160px 160px 20px 20px;
    }

    .academy-conteudo {
        padding: 45px 28px;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .faq-introducao {
        position: static;
    }

    .faq-pergunta {
        font-size: 18px;
    }

    .pagina-interna {
        min-height: 420px;
    }

    .pagina-interna-conteudo {
        min-height: 420px;
        padding: 70px 20px;
    }

    .footer-conteudo {
        padding: 65px 20px 55px;
        grid-template-columns: 1fr 1fr;
        gap: 45px 30px;
    }

    .footer-logo {
        height: 90px;
    }

    .footer-inferior-conteudo {
        padding: 25px 20px;

        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .whatsapp-widget {
        right: 18px;
        bottom: 18px;
    }

    .whatsapp-texto {
        display: none;
    }

    .whatsapp-botao {
        width: 58px;
        height: 58px;
        padding: 8px;
    }

    .whatsapp-icone {
    width: 42px;
    height: 42px;

    flex: 0 0 42px;

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

    border-radius: 50%;

    background: #25D366;
    color: #ffffff;

    box-shadow:
        0 0 0 3px
        rgba(37, 211, 102, 0.08);
}

.whatsapp-icone svg {
    width: 23px;
    height: 23px;

    display: block;

    fill: currentColor;
}

}


/* ========================================
   CELULARES PEQUENOS
======================================== */

@media (max-width: 480px) {

    .logo {
        height: 70px;
        max-width: 150px;
    }

    .hero-acoes {
        width: 100%;
        flex-direction: column;
    }

    .hero-acoes .botao {
        width: 100%;
    }

    .hero-beneficios {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .hero-visual {
        min-height: 410px;
    }

    h2 {
        font-size: 38px;
    }

    .portfolio-home-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 390px;
    }

    .portfolio-home-grande {
        grid-row: span 1;
    }

    .portfolio-home-cta {
        display: none;
    }

    .portfolio-home-overlay h3 {
        font-size: 23px;
    }

    .estilo-card {
        flex: 0 0 90%;
        min-height: 450px;
        padding: 26px;
    }

    .estilo-card h3 {
        font-size: 27px;
    }

    .estilo-card p {
        font-size: 13px;
    }

    .formato-imagem {
        min-height: 250px;
        padding:
            18px 10px 4px;
    }

    .formato-imagem img {
        height: 215px;
        max-height: 215px;
        max-width: 94%;
    }

    .formato-imagem::before {
        width: 170px;
        height: 170px;
    }


    .formato-demo {
        min-height: 300px;
    }

    .dedo-luxo {
        transform: scale(0.84);
        transform-origin: bottom center;
    }

    .estilo-card:hover .dedo-luxo {
        transform:
            translateY(-3px)
            scale(0.85);
    }


    .estilos-seta {
        width: 45px;
        height: 45px;
    }

    .estilos-indicador {
        font-size: 9px;
    }

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

    .footer-marca {
        max-width: none;
    }

    .footer-logo {
        height: 85px;
    }

    .footer-legal {
        flex-wrap: wrap;
    }

    .whatsapp-card {
        position: fixed;

        left: 16px;
        right: 16px;
        bottom: 88px;

        width: auto;
    }

    .faq-resposta p {
        padding-right: 0;
    }

}


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

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

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }


    .estilos-linha::after {
        animation: none;
        width: 100%;
    }

}


/* ========================================
   CORREÇÃO FINAL — PORTFÓLIO DA HOME
======================================== */

@media (max-width: 980px) {

    .portfolio-home-horizontal {
        grid-column: 1 / -1;
        grid-row: span 1;
        min-height: 250px;
    }

}

@media (max-width: 480px) {

    .portfolio-home-horizontal {
        grid-column: auto;
        grid-row: auto;
        min-height: 390px;
    }

    .portfolio-home-horizontal .portfolio-home-imagem {
        background-position: center;
    }

}

/* ========================================
   SERVIÇOS — NOVA VERSÃO
======================================== */

.servicos {
    position: relative;
}

.servicos-topo {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 54px;
}

.servicos-topo .secao-cabecalho {
    margin-bottom: 0;
}

.servicos-topo h2 span {
    display: block;
    color: var(--dourado);
    font-style: italic;
}

.servicos-cta-topo {
    flex-shrink: 0;
}

.servicos-grid-novo {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.servico-premium {
    position: relative;
    min-height: 370px;
    padding: 34px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.20);
    border-radius: 24px;
    background:
        radial-gradient(
            circle at 100% 0%,
            rgba(212, 175, 55, 0.08),
            transparent 35%
        ),
        linear-gradient(
            145deg,
            #1A1B1F,
            #101011
        );
    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

.servico-premium::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 0;
    background: var(--dourado);
    transition: height 0.4s ease;
}

.servico-premium:hover {
    transform: translateY(-7px);
    border-color: rgba(212, 175, 55, 0.55);
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.28);
}

.servico-premium:hover::before {
    height: 100%;
}

.servico-premium-destaque {
    grid-row: span 2;
    min-height: 758px;
    justify-content: space-between;
    background:
        radial-gradient(
            circle at 70% 20%,
            rgba(212, 175, 55, 0.15),
            transparent 35%
        ),
        linear-gradient(
            145deg,
            #20201D,
            #111112 70%
        );
}

.servico-premium-topo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.servico-categoria {
    color: var(--cinza-texto);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.servico-premium-conteudo {
    margin-top: auto;
    padding-top: 55px;
}

.servico-premium h3 {
    max-width: 450px;
    margin-bottom: 18px;
    color: var(--champagne);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 400;
    line-height: 1.05;
}

.servico-premium p {
    max-width: 470px;
    margin-bottom: 28px;
    color: var(--cinza-claro);
    font-size: 15px;
    line-height: 1.75;
}

.servico-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.servico-tags span {
    padding: 7px 12px;
    border: 1px solid rgba(212, 175, 55, 0.22);
    border-radius: 999px;
    color: var(--champagne);
    background: rgba(212, 175, 55, 0.04);
    font-size: 10px;
}

.servico-link {
    margin-top: 35px;
    padding-top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    color: var(--dourado);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.servico-link > span {
    font-size: 22px;
    transition: transform 0.25s ease;
}

.servico-link:hover > span {
    transform: translateX(5px);
}


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

.sobre-renata {
    position: relative;
    scroll-margin-top: 120px;
}

.sobre-renata-grid {
    display: grid;
    grid-template-columns:
        minmax(320px, 0.85fr)
        minmax(0, 1.15fr);
    gap: 85px;
    align-items: center;
}

.sobre-visual {
    position: relative;
    min-height: 650px;
}

.sobre-foto {
    position: relative;
    width: 100%;
    min-height: 650px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.26);
    border-radius: 240px 240px 28px 28px;
    background:
        url("../img/hero.jpeg")
        center 25% / cover no-repeat;
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.32);
}

.sobre-foto-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            rgba(11, 11, 12, 0.04),
            rgba(11, 11, 12, 0.82)
        );
}

.sobre-assinatura {
    position: absolute;
    left: 36px;
    bottom: 35px;
    z-index: 2;
    display: flex;
    flex-direction: column;
}

.sobre-assinatura span {
    margin-bottom: 4px;
    color: var(--dourado);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.sobre-assinatura strong {
    color: var(--champagne);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 31px;
    font-weight: 400;
}

.sobre-detalhe {
    position: absolute;
    right: -35px;
    bottom: 70px;
    width: 110px;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--dourado);
    border-radius: 50%;
    background: var(--preto);
    color: var(--dourado);
    font-family: Georgia, serif;
    font-size: 31px;
}

.sobre-conteudo {
    max-width: 620px;
}

.sobre-conteudo h2 span {
    display: block;
    color: var(--dourado);
    font-style: italic;
}

.sobre-destaque {
    margin-bottom: 25px !important;
    color: var(--champagne) !important;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 21px !important;
    line-height: 1.65 !important;
}

.sobre-conteudo > p:not(.sobre-destaque) {
    color: var(--cinza-claro);
    font-size: 15px;
    line-height: 1.8;
}

.sobre-numeros {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin: 38px 0;
    padding: 28px 0;
    border-top: 1px solid rgba(212, 175, 55, 0.18);
    border-bottom: 1px solid rgba(212, 175, 55, 0.18);
}

.sobre-numeros div {
    display: flex;
    flex-direction: column;
}

.sobre-numeros strong {
    color: var(--dourado);
    font-family: Georgia, serif;
    font-size: 21px;
    font-weight: 400;
}

.sobre-numeros span {
    margin-top: 3px;
    color: var(--cinza-texto);
    font-size: 10px;
}

.sobre-acoes {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}


/* ========================================
   SERVIÇOS + SOBRE — RESPONSIVO
======================================== */

@media (max-width: 900px) {

    .servicos-topo {
        align-items: flex-start;
        flex-direction: column;
        gap: 25px;
    }

    .servicos-grid-novo {
        grid-template-columns: 1fr;
    }

    .servico-premium-destaque {
        grid-row: auto;
        min-height: 430px;
    }

    .sobre-renata-grid {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .sobre-visual {
        max-width: 520px;
        width: 100%;
        margin: 0 auto;
        min-height: 580px;
    }

    .sobre-foto {
        min-height: 580px;
    }

    .sobre-detalhe {
        right: -15px;
    }
}

@media (max-width: 600px) {

    .servico-premium {
        min-height: auto;
        padding: 28px 24px;
    }

    .servico-premium-destaque {
        min-height: auto;
    }

    .servico-premium-conteudo {
        padding-top: 45px;
    }

    .sobre-visual,
    .sobre-foto {
        min-height: 500px;
    }

    .sobre-foto {
        border-radius: 190px 190px 24px 24px;
    }

    .sobre-detalhe {
        width: 82px;
        height: 82px;
        right: 0;
        font-size: 25px;
    }

    .sobre-numeros {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .sobre-acoes {
        flex-direction: column;
    }

    .sobre-acoes .botao {
        width: 100%;
    }
}


/* ========================================
   AJUSTE DE TRANSIÇÃO HERO -> EXPERIÊNCIA
======================================== */
@media (max-width: 980px) {
    .diferenciais {
        margin-top: -28px;
        padding-top: 66px !important;
        border-top-left-radius: 28px;
        border-top-right-radius: 28px;
    }
}

@media (max-width: 768px) {
    .diferenciais {
        margin-top: -22px;
        padding-top: 56px !important;
        border-top-left-radius: 24px;
        border-top-right-radius: 24px;
        background:
            radial-gradient(
                circle at 50% 0%,
                rgba(212, 175, 55, 0.10),
                transparent 46%
            ),
            linear-gradient(
                180deg,
                rgba(17, 16, 13, 0.94) 0%,
                rgba(11, 11, 12, 0.99) 72px,
                rgba(11, 11, 12, 1) 150px
            );
    }

    .diferenciais::after {
        top: 14px;
        width: min(160px, 50vw);
        height: 90px;
    }

    .secao-cabecalho {
        margin-bottom: 36px;
    }
}

@media (max-width: 480px) {
    .hero-conteudo {
        padding-bottom: 28px;
        gap: 34px;
    }

    .hero-visual {
        min-height: 390px;
        background-position: 56% 12%;
    }

    .diferenciais {
        margin-top: -18px;
        padding-top: 48px !important;
    }

    .diferenciais::before {
        width: min(220px, 64vw);
    }

    .secao-cabecalho {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {

    body.carrinho-aberto .whatsapp-widget {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;

        transform:
            translateY(12px);
    }

}


/* ========================================================
   MOBILE APP SHELL V1
   Desktop permanece com o layout editorial atual.
   Mobile <= 768px ganha navegação e comportamento de app.
======================================================== */

.mobile-bottom-nav,
.mobile-more-sheet,
.mobile-more-overlay,
.mobile-more-trigger {
    display: none;
}

body.mobile-sheet-open {
    overflow: hidden;
}

@media (max-width: 768px) {

    :root {
        --mobile-header-altura: 76px;
        --mobile-nav-altura: 76px;
        --mobile-safe-bottom: env(safe-area-inset-bottom, 0px);
    }

    html {
        scroll-padding-top: var(--mobile-header-altura);
    }

    body {
        min-height: 100dvh;
        padding-bottom:
            calc(
                var(--mobile-nav-altura)
                + var(--mobile-safe-bottom)
                + 12px
            );
    }

    /* =============================
       HEADER COMPACTO DE APP
    ============================= */

    .site-header {
        background: rgba(11, 11, 12, 0.92);
        border-bottom: 1px solid rgba(212, 175, 55, 0.13);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
    }

    .navbar {
        min-height: var(--mobile-header-altura);
        padding: 0 18px;
        gap: 14px;
    }

    .logo {
        height: 58px;
        max-width: 144px;
    }

    /* No celular o menu tradicional deixa de ser a navegação principal. */
    .menu,
    .menu-toggle {
        display: none !important;
    }

    .mobile-more-trigger {
        width: 44px;
        height: 44px;
        margin-left: auto;
        padding: 0;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border: 1px solid rgba(212, 175, 55, 0.20);
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.025);
        color: var(--champagne);
        font-size: 17px;
        letter-spacing: 2px;
        cursor: pointer;
    }

    /* =============================
       FOOTER DESKTOP
       No app mobile as informações ficam em "Mais".
    ============================= */

    .site-footer {
        display: none;
    }

    /* =============================
       BOTTOM NAVIGATION
    ============================= */

    .mobile-bottom-nav {
        position: fixed;
        left: 10px;
        right: 10px;
        bottom:
            calc(8px + var(--mobile-safe-bottom));
        z-index: 2200;
        min-height: var(--mobile-nav-altura);
        padding: 7px 8px;
        display: grid;
        grid-template-columns: repeat(5, minmax(0, 1fr));
        align-items: end;
        gap: 2px;
        border: 1px solid rgba(212, 175, 55, 0.18);
        border-radius: 23px;
        background: rgba(15, 15, 16, 0.94);
        box-shadow: 0 18px 50px rgba(0, 0, 0, 0.52);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
    }

    .mobile-nav-item,
    .mobile-nav-agendar {
        position: relative;
        min-width: 0;
        min-height: 58px;
        padding: 6px 3px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 4px;
        border: 0;
        border-radius: 16px;
        background: transparent;
        color: rgba(255, 255, 255, 0.54);
        font-family: inherit;
        text-decoration: none;
        cursor: pointer;
        transition:
            color 0.2s ease,
            background 0.2s ease,
            transform 0.2s ease;
    }

    .mobile-nav-item i {
        font-size: 20px;
        line-height: 1;
    }

    .mobile-nav-item > span:last-child,
    .mobile-nav-agendar > span:last-child {
        max-width: 100%;
        overflow: hidden;
        color: inherit;
        font-size: 9px;
        font-weight: 700;
        letter-spacing: 0.2px;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .mobile-nav-item.ativo {
        color: var(--dourado);
        background: rgba(212, 175, 55, 0.065);
    }

    .mobile-nav-item:active {
        transform: scale(0.96);
    }

    .mobile-nav-icon-wrap {
        position: relative;
        display: inline-flex;
    }

    .mobile-cart-badge {
        position: absolute;
        top: -8px;
        right: -11px;
        min-width: 18px;
        height: 18px;
        padding: 0 4px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border: 2px solid #0f0f10;
        border-radius: 999px;
        background: var(--dourado);
        color: var(--preto);
        font-size: 8px;
        font-weight: 800;
    }

    .mobile-cart-badge[hidden] {
        display: none;
    }

    /* Ação principal central */
    .mobile-nav-agendar {
        min-height: 70px;
        margin-top: -21px;
        color: var(--champagne);
        overflow: visible;
    }

    .mobile-nav-agendar-icon {
        width: 52px;
        height: 52px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border: 1px solid rgba(245, 230, 200, 0.24);
        border-radius: 50%;
        background:
            radial-gradient(
                circle at 35% 28%,
                rgba(255, 255, 255, 0.18),
                transparent 26%
            ),
            var(--dourado);
        color: var(--preto);
        font-size: 22px;
        box-shadow:
            0 9px 28px rgba(212, 175, 55, 0.25),
            0 0 0 6px rgba(11, 11, 12, 0.82);
        transition:
            transform 0.2s ease,
            background 0.2s ease;
    }

    .mobile-nav-agendar:active .mobile-nav-agendar-icon {
        transform: scale(0.94);
    }

    .mobile-nav-agendar.ativo .mobile-nav-agendar-icon {
        background: var(--dourado-claro);
        box-shadow:
            0 10px 30px rgba(212, 175, 55, 0.34),
            0 0 0 6px rgba(11, 11, 12, 0.88);
    }

    /* =============================
       BOTTOM SHEET "MAIS"
    ============================= */

    .mobile-more-overlay {
        position: fixed;
        inset: 0;
        z-index: 2450;
        display: block;
        background: rgba(0, 0, 0, 0.66);
        opacity: 0;
        visibility: hidden;
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);
        transition:
            opacity 0.25s ease,
            visibility 0.25s ease;
    }

    .mobile-more-overlay[hidden] {
        display: none;
    }

    .mobile-more-overlay.aberto {
        opacity: 1;
        visibility: visible;
    }

    .mobile-more-sheet {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 2500;
        max-height: min(78dvh, 690px);
        padding:
            9px
            18px
            calc(22px + var(--mobile-safe-bottom));
        display: block;
        overflow-y: auto;
        border-top: 1px solid rgba(212, 175, 55, 0.25);
        border-radius: 28px 28px 0 0;
        background:
            radial-gradient(
                circle at 82% 0%,
                rgba(212, 175, 55, 0.12),
                transparent 28%
            ),
            #121214;
        box-shadow: 0 -28px 70px rgba(0, 0, 0, 0.58);
        transform: translateY(105%);
        visibility: hidden;
        transition:
            transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
            visibility 0.32s ease;
    }

    .mobile-more-sheet.aberto {
        transform: translateY(0);
        visibility: visible;
    }

    .mobile-sheet-handle {
        width: 44px;
        height: 4px;
        margin: 0 auto 16px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.16);
    }

    .mobile-sheet-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
        margin-bottom: 18px;
    }

    .mobile-sheet-kicker {
        display: block;
        margin-bottom: 2px;
        color: var(--dourado);
        font-size: 9px;
        font-weight: 700;
        letter-spacing: 1.8px;
        text-transform: uppercase;
    }

    .mobile-sheet-header h2 {
        margin: 0;
        color: var(--champagne);
        font-size: 30px;
    }

    .mobile-sheet-close {
        width: 42px;
        height: 42px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border: 1px solid rgba(212, 175, 55, 0.18);
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.03);
        color: var(--champagne);
        font-size: 23px;
        cursor: pointer;
    }

    .mobile-sheet-links {
        display: grid;
        gap: 8px;
    }

    .mobile-sheet-links a {
        min-height: 58px;
        padding: 10px 14px;
        display: grid;
        grid-template-columns: 34px 1fr 22px;
        align-items: center;
        gap: 9px;
        border: 1px solid rgba(212, 175, 55, 0.12);
        border-radius: 16px;
        background: rgba(255, 255, 255, 0.022);
        color: rgba(255, 255, 255, 0.88);
    }

    .mobile-sheet-links a > i:first-child {
        color: var(--dourado);
        font-size: 19px;
    }

    .mobile-sheet-links a > i:last-child {
        justify-self: end;
        color: rgba(255, 255, 255, 0.34);
        font-size: 12px;
    }

    .mobile-sheet-links a span {
        font-size: 13px;
        font-weight: 600;
    }

    .mobile-sheet-info {
        margin-top: 16px;
        padding: 16px;
        display: grid;
        gap: 13px;
        border: 1px solid rgba(212, 175, 55, 0.12);
        border-radius: 17px;
        background: rgba(212, 175, 55, 0.035);
    }

    .mobile-sheet-info div {
        display: flex;
        flex-direction: column;
        gap: 2px;
    }

    .mobile-sheet-info span {
        color: var(--cinza-texto);
        font-size: 9px;
        letter-spacing: 1px;
        text-transform: uppercase;
    }

    .mobile-sheet-info strong {
        color: var(--champagne);
        font-size: 12px;
        font-weight: 500;
    }

    .mobile-sheet-brand {
        margin-top: 16px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 14px;
    }

    .mobile-sheet-brand img {
        width: auto;
        height: 45px;
        object-fit: contain;
    }

    .mobile-sheet-brand span {
        color: rgba(255, 255, 255, 0.34);
        font-size: 8px;
        text-align: right;
    }

    /* =============================
       WHATSAPP COMO BOLHA DE APP
    ============================= */

    .whatsapp-widget {
        right: 16px;
        bottom:
            calc(
                var(--mobile-nav-altura)
                + var(--mobile-safe-bottom)
                + 22px
            );
        z-index: 2150;
    }

    .whatsapp-botao {
        width: 52px;
        height: 52px;
        min-height: 52px;
        padding: 6px;
        justify-content: center;
        border-radius: 50%;
        border-color: rgba(37, 211, 102, 0.32);
    }

    .whatsapp-icone {
        width: 40px;
        height: 40px;
        flex: 0 0 40px;
    }

    .whatsapp-texto {
        display: none;
    }

    .whatsapp-card {
        position: fixed;
        left: 14px;
        right: 14px;
        bottom:
            calc(
                var(--mobile-nav-altura)
                + var(--mobile-safe-bottom)
                + 30px
            );
        width: auto;
        max-height: calc(100dvh - 130px);
        overflow-y: auto;
    }

    /* Na loja, carrinho e WhatsApp ficam lado a lado acima da bottom nav. */
    body.pagina-loja:not(.carrinho-aberto) .whatsapp-widget {
        right: 82px;
    }

    body.carrinho-aberto .whatsapp-widget {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(10px);
    }

    /* =============================
       CARROSSEL DE FORMATOS
       Mobile = swipe; sem setas.
    ============================= */

    .estilos-controles {
        display: none !important;
    }

    .estilos-indicador {
        display: flex;
    }

    .estilos-carrossel {
        touch-action: pan-x;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        overscroll-behavior-x: contain;
    }
}

@media (min-width: 769px) {
    /* Desktop tem setas; o texto de swipe é redundante. */
    .estilos-indicador {
        display: none !important;
    }
}

@media (max-width: 420px) {
    .mobile-bottom-nav {
        left: 7px;
        right: 7px;
        border-radius: 21px;
    }

    .mobile-nav-item > span:last-child,
    .mobile-nav-agendar > span:last-child {
        font-size: 8px;
    }

    .mobile-nav-agendar-icon {
        width: 49px;
        height: 49px;
    }

    .mobile-sheet-brand span {
        max-width: 150px;
    }
}

/* ========================================================
   HOME V2 — REFINAMENTO VISUAL
   Menos espaços vazios, cards menores, experiência premium
   e remoção visual de índices/monograma.
======================================================== */

/* Ritmo vertical geral da Home */
main section:not(.hero):not(.pagina-interna) {
    padding-top: 82px;
    padding-bottom: 82px;
}

.secao-cabecalho {
    margin-bottom: 36px;
}

.secao-cabecalho p:last-child,
.servicos-topo .secao-cabecalho p:last-child,
.portfolio-home-topo p:last-child {
    margin-bottom: 0;
}

/* ========================================
   EXPERIÊNCIA — CARDS MAIS COMPACTOS/PREMIUM
======================================== */

.diferenciais {
    padding-top: 66px !important;
    padding-bottom: 70px !important;
}

.diferenciais-grid {
    gap: 16px;
}

.diferencial-numero,
.card-indice {
    display: none !important;
}

.diferencial-card {
    position: relative;
    isolation: isolate;
    min-height: 0;
    padding: 26px 24px 24px;
    overflow: hidden;

    border-color: rgba(212, 175, 55, 0.20);

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.034),
            rgba(255, 255, 255, 0.008)
        ),
        linear-gradient(
            145deg,
            rgba(26, 27, 31, 0.94),
            rgba(11, 11, 12, 0.98)
        );

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.018),
        0 14px 34px rgba(0, 0, 0, 0.16);
}

.diferencial-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;

    background:
        radial-gradient(
            circle at 14% 0%,
            rgba(212, 175, 55, 0.15),
            transparent 40%
        ),
        linear-gradient(
            115deg,
            rgba(212, 175, 55, 0.04),
            transparent 34%
        );

    opacity: 0.9;
}

.diferencial-card::after {
    content: "";
    position: absolute;
    left: 24px;
    bottom: 0;

    width: 64px;
    height: 1px;

    background:
        linear-gradient(
            90deg,
            var(--dourado),
            rgba(212, 175, 55, 0)
        );

    opacity: 0.72;

    transition:
        width 0.35s ease,
        opacity 0.35s ease;
}

.diferencial-card:hover::after {
    width: calc(100% - 48px);
    opacity: 1;
}

.diferencial-card h3 {
    margin: 0 0 12px;

    color: var(--champagne);

    font-family: Georgia, "Times New Roman", serif;
    font-size: 25px;
    font-weight: 400;
    line-height: 1.1;
}

.diferencial-card p {
    margin: 0;
    max-width: none;

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

    font-size: 14px;
    line-height: 1.65;
}

.diferencial-card:hover {
    transform: translateY(-4px);
    border-color: rgba(212, 175, 55, 0.52);

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.025),
        0 20px 46px rgba(0, 0, 0, 0.24);
}

/* ========================================
   SERVIÇOS — MAIS COMPACTOS
======================================== */

.servicos {
    padding-top: 72px !important;
    padding-bottom: 72px !important;
}

.servicos-topo {
    margin-bottom: 38px;
}

.servicos-grid-novo {
    gap: 16px;
}

.servico-premium {
    min-height: 0;
    padding: 28px;
}

.servico-premium-destaque {
    min-height: 540px;
}

.servico-premium-topo {
    justify-content: flex-end;
}

.servico-premium-conteudo {
    padding-top: 28px;
}

.servico-premium h3 {
    margin-bottom: 14px;
    font-size: clamp(27px, 2.6vw, 38px);
}

.servico-premium p {
    margin-bottom: 22px;
    line-height: 1.68;
}

.servico-link {
    margin-top: 26px;
    padding-top: 16px;
}

/* ========================================
   SOBRE RENATA — SEM MONOGRAMA RM
======================================== */

.sobre-renata {
    padding-top: 72px !important;
    padding-bottom: 72px !important;
}

.sobre-renata-grid {
    gap: 66px;
}

.sobre-detalhe {
    display: none !important;
}

.sobre-visual,
.sobre-foto {
    min-height: 590px;
}

/* ========================================
   OUTRAS SEÇÕES — MENOS ESPAÇO MORTO
======================================== */

.portfolio-home,
.estilos,
.academy,
.faq,
.cta-agendamento {
    padding-top: 72px !important;
    padding-bottom: 72px !important;
}

.portfolio-home-topo,
.estilos-cabecalho {
    margin-bottom: 38px;
}

.academy-conteudo {
    padding: 56px;
}

.site-footer {
    margin-top: 20px;
}

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

@media (max-width: 980px) {

    main section:not(.hero):not(.pagina-interna) {
        padding-top: 66px;
        padding-bottom: 66px;
    }

    .diferenciais {
        padding-top: 54px !important;
        padding-bottom: 60px !important;
    }

    .servicos,
    .sobre-renata,
    .portfolio-home,
    .estilos,
    .academy,
    .faq,
    .cta-agendamento {
        padding-top: 60px !important;
        padding-bottom: 60px !important;
    }

    .diferencial-card {
        padding: 24px 22px 22px;
    }

    .sobre-renata-grid {
        gap: 46px;
    }
}

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

@media (max-width: 768px) {

    main section:not(.hero):not(.pagina-interna) {
        padding: 48px 20px;
    }

    .secao-etiqueta {
        margin-bottom: 12px;
    }

    .secao-cabecalho {
        margin-bottom: 26px;
    }

    .secao-cabecalho h2,
    .servicos-topo h2 {
        margin-bottom: 14px;
    }

    section p {
        margin-bottom: 20px;
    }

    .diferenciais {
        margin-top: -12px;
        padding-top: 44px !important;
        padding-bottom: 48px !important;
    }

    .diferenciais-grid {
        gap: 12px;
    }

    .diferencial-card {
        min-height: 0;
        padding: 22px 20px 20px;
        border-radius: 20px;
    }

    .diferencial-card::after {
        left: 20px;
        width: 52px;
    }

    .diferencial-card:hover::after {
        width: calc(100% - 40px);
    }

    .diferencial-card h3 {
        margin-bottom: 9px;
        font-size: 23px;
    }

    .diferencial-card p {
        font-size: 13px;
        line-height: 1.58;
    }

    .servicos {
        padding-top: 48px !important;
        padding-bottom: 48px !important;
    }

    .servicos-topo {
        gap: 18px;
        margin-bottom: 24px;
    }

    .servicos-grid-novo {
        gap: 12px;
    }

    .servico-premium,
    .servico-premium-destaque {
        min-height: 0;
        padding: 22px 20px;
        border-radius: 20px;
    }

    .servico-premium-topo {
        justify-content: flex-end;
        min-height: 16px;
    }

    .servico-premium-conteudo {
        padding-top: 18px;
    }

    .servico-premium h3 {
        margin-bottom: 12px;
        font-size: 26px;
        line-height: 1.08;
    }

    .servico-premium p {
        margin-bottom: 18px;
        font-size: 14px;
        line-height: 1.6;
    }

    .servico-tags {
        gap: 6px;
    }

    .servico-tags span {
        padding: 6px 10px;
        font-size: 9px;
    }

    .servico-link {
        margin-top: 20px;
        padding-top: 14px;
    }

    .sobre-renata {
        padding-top: 48px !important;
        padding-bottom: 48px !important;
    }

    .sobre-renata-grid {
        gap: 34px;
    }

    .sobre-visual,
    .sobre-foto {
        min-height: 450px;
    }

    .sobre-assinatura {
        left: 22px;
        bottom: 22px;
    }

    .sobre-assinatura strong {
        font-size: 27px;
    }

    .sobre-numeros {
        margin: 28px 0;
        padding: 22px 0;
    }

    .portfolio-home,
    .estilos,
    .academy,
    .faq,
    .cta-agendamento {
        padding-top: 48px !important;
        padding-bottom: 48px !important;
    }

    .portfolio-home-topo,
    .estilos-cabecalho {
        margin-bottom: 26px;
    }

    .academy-conteudo {
        padding: 34px 24px;
    }

    .whatsapp-widget {
        bottom:
            calc(
                var(--mobile-nav-altura)
                + var(--mobile-safe-bottom)
                + 18px
            );
    }
}

/* ========================================
   CELULARES PEQUENOS
======================================== */

@media (max-width: 480px) {

    main section:not(.hero):not(.pagina-interna) {
        padding: 42px 20px;
    }

    .diferenciais,
    .servicos,
    .sobre-renata,
    .portfolio-home,
    .estilos,
    .academy,
    .faq,
    .cta-agendamento {
        padding-top: 42px !important;
        padding-bottom: 42px !important;
    }

    .diferenciais {
        padding-top: 40px !important;
    }

    .diferencial-card {
        padding: 20px 18px 18px;
    }

    .diferencial-card h3 {
        font-size: 22px;
    }

    .diferencial-card p {
        font-size: 12.8px;
    }

    .servico-premium,
    .servico-premium-destaque {
        padding: 20px 18px;
    }

    .servico-premium h3 {
        font-size: 25px;
    }

    .sobre-visual,
    .sobre-foto {
        min-height: 420px;
    }

    .sobre-foto {
        border-radius: 170px 170px 22px 22px;
    }

    .portfolio-home-grid {
        grid-auto-rows: 350px;
    }

    .portfolio-home-horizontal {
        min-height: 350px;
    }

    .academy-conteudo {
        padding: 30px 22px;
    }
}

/* ========================================
   HERO — ETIQUETA IGUAL ÀS SEÇÕES
======================================== */

.hero-kicker {
    font-family: inherit;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    line-height: 1.4;
    text-transform: uppercase;
    color: var(--dourado);
}

/* ========================================
   HERO — KICKER SEM LINHA E SEM QUEBRA
======================================== */

.hero-kicker-wrap {
    gap: 0;
}

.hero-kicker-line {
    display: none !important;
}

.hero-kicker {
    white-space: nowrap;
}

@media (max-width: 768px) {

    .hero-kicker-wrap {
        margin-bottom: 18px;
    }

    .hero-kicker {
        white-space: nowrap;
        font-size: 11px !important;
        letter-spacing: 2.2px !important;
    }

}