/* ==========================================================================
   MANEJO ATELIÊ — STYLESHEET SUPREMO DE LUXO (EXPOSIÇÃO EDITORIAL ESTILO GALERIA)
   Tipografia: Bebas Neue + Caveat Signature + Playfair Display + Plus Jakarta Sans
   Seção Diferenciais: Exposição Editorial Fluída — ZERO CARDS / ZERO CAIXAS
   Modal Lightbox: Visualização 100% Íntegra (object-fit: contain)
   ========================================================================== */

/* === RESET & REGRAS DE OURO === */
*,
*::before,
*::after {
    box-sizing: border-box !important;
    margin: 0;
    padding: 0;
    max-width: 100%;
}

html,
body {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow-x: hidden !important;
    position: relative;
    background-color: #FCF8F5; /* Off-white Porcelana */
    color: #3B2226;            /* Vinho Profundo */
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* === DESIGN SYSTEM TOKENS === */
:root {
    /* Cores de Fundo & Superfície Fluída */
    --bg-base: #FCF8F5;              /* Off-white Porcelana */
    --bg-surface: #FFFFFF;           /* Branco Puro */
    --bg-soft-pink: #F8EBEA;         /* Rosa pastel delicado */
    --bg-pink-accent: #F2DCDD;       /* Rosé macio */
    --bg-glass: rgba(255, 255, 255, 0.92);

    /* Acentos & Luxo */
    --rose-gold: #D49B9E;            /* Ouro rosé nobre */
    --rose-deep: #B5656C;            /* Rosé queimado de destaque */
    --brand-burgundy: #5A2A32;       /* Vinho autoridade */

    /* Textos */
    --text-primary: #3B2226;         /* Marrom-vinho ultra profundo */
    --text-secondary: #6B5256;       /* Vinho seco */
    --text-muted: #9C8388;           /* Rosé cinza */

    /* Botão de Conversão */
    --whatsapp-green: #10B981;        /* Verde Esmeralda Limpo */
    --whatsapp-glow: rgba(16, 185, 129, 0.25);

    /* Bordas & Elevação */
    --border-subtle: rgba(181, 101, 108, 0.14);
    --border-accent: rgba(212, 155, 158, 0.35);
    --shadow-card: 0 10px 30px rgba(90, 42, 50, 0.05);
    --shadow-hover: 0 25px 60px rgba(90, 42, 50, 0.14);

    /* Tipografia Internacional de Alto Impacto */
    --font-display: 'Bebas Neue', 'Impact', sans-serif;
    --font-script: 'Caveat', cursive;
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Plus Jakarta Sans', sans-serif;

    /* Arredondamento */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;

    /* Transições */
    --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-base: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* === THREE.JS CANVAS BACKGROUND === */
#bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -2;
    pointer-events: none;
}

.ambient-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    pointer-events: none;
    background: radial-gradient(circle at 85% 15%, rgba(248, 235, 234, 0.85) 0%, transparent 60%),
                radial-gradient(circle at 15% 75%, rgba(242, 220, 221, 0.55) 0%, transparent 65%);
}

/* === GARANTIA DE VISIBILIDADE IMEDIATA E VELUDO NO LOAD === */
.hero,
.hero * {
    opacity: 1;
}

/* Reveal progressivo aveludado para as demais seções */
.section [data-scroll] {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.section [data-scroll].is-inview {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* === ESTRUTURA CONTAINER === */
.container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px;
}

.app-viewport {
    position: relative;
    width: 100%;
}

/* === MARCA D'ÁGUA GIGANTE SERIFADA === */
.watermark-bg {
    position: absolute;
    top: 2%;
    left: -4%;
    font-family: var(--font-display);
    font-size: clamp(8rem, 24vw, 26rem);
    font-weight: 400;
    line-height: 0.8;
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(181, 101, 108, 0.08);
    user-select: none;
    pointer-events: none;
    z-index: 0;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

/* === HEADER FLUTUANTE DE LUXO === */
.header {
    position: fixed;
    top: 14px;
    left: 0;
    width: 100%;
    z-index: 100;
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 22px;
    background: rgba(252, 248, 245, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-full);
    box-shadow: 0 4px 20px rgba(90, 42, 50, 0.04);
}

.header__logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--brand-burgundy);
}

.logo__icon {
    width: 18px;
    height: 18px;
    color: var(--rose-deep);
}

.logo__text {
    font-family: var(--font-display);
    font-size: 1.35rem;
    letter-spacing: 0.06em;
}

.header__badge {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    background: var(--bg-soft-pink);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--rose-deep);
}

.badge__dot {
    width: 5px;
    height: 5px;
    background-color: var(--rose-deep);
    border-radius: 50%;
}

/* === BOTÕES GERAIS E CTAS === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius-full);
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition-base);
    border: none;
    outline: none;
    white-space: nowrap;
}

.btn--header {
    padding: 8px 18px;
    font-size: 0.8rem;
    background: var(--bg-soft-pink);
    color: var(--brand-burgundy);
    border: 1px solid var(--border-accent);
}

.btn--header:hover {
    background: var(--rose-deep);
    color: #FFFFFF;
}

.btn--primary {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: #FFFFFF;
    box-shadow: 0 6px 20px var(--whatsapp-glow);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px var(--whatsapp-glow);
}

.btn--secondary {
    background: var(--bg-surface);
    color: var(--brand-burgundy);
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-card);
}

.btn--secondary:hover {
    background: var(--bg-soft-pink);
    border-color: var(--rose-gold);
    color: var(--rose-deep);
}

.btn--lg {
    padding: 16px 32px;
    font-size: 1rem;
}

.btn__icon {
    width: 18px;
    height: 18px;
}

/* === BOTÕES DA HERO & CTA FINAL === */
.btn--hero.btn--primary {
    background: linear-gradient(135deg, #5A2A32 0%, #3B2226 100%);
    color: #FFFFFF;
    border: 1px solid rgba(212, 155, 158, 0.35);
    box-shadow: 0 8px 24px rgba(90, 42, 50, 0.16);
    padding: 16px 30px;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
}

.btn--hero.btn--primary:hover {
    background: linear-gradient(135deg, #6C323C 0%, #4A262C 100%);
    border-color: var(--rose-gold);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(90, 42, 50, 0.24);
}

.btn--hero.btn--secondary {
    background: #FFFFFF;
    color: var(--brand-burgundy);
    border: 1px solid rgba(181, 101, 108, 0.22);
    box-shadow: var(--shadow-card);
    padding: 16px 26px;
    font-size: 0.95rem;
}

.btn--hero.btn--secondary:hover {
    background: var(--bg-soft-pink);
    border-color: var(--rose-gold);
    color: var(--rose-deep);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.pulse-glow-burgundy {
    animation: pulseBurgundy 3s infinite alternate ease-in-out;
}

@keyframes pulseBurgundy {
    0% {
        box-shadow: 0 0 12px rgba(90, 42, 50, 0.18);
    }
    100% {
        box-shadow: 0 0 26px rgba(181, 101, 108, 0.35);
    }
}

/* === HERO SECTION NÍVEL INTERNACIONAL === */
.hero {
    position: relative;
    padding-top: 110px;
    padding-bottom: 45px;
    min-height: 92vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 1;
}

.hero__container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero__tag-subtle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0;
    background: transparent;
    color: var(--rose-deep);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.hero__tag-subtle svg {
    color: var(--rose-gold);
}

.hero__headline-stage {
    position: relative;
    width: 100%;
    margin-top: 5px;
    margin-bottom: 30px;
}

.hero__giant-title {
    display: flex;
    flex-direction: column;
    line-height: 0.86;
    margin: 0;
}

.title-line {
    font-family: var(--font-display);
    font-size: clamp(4.8rem, 12.5vw, 11.5rem);
    font-weight: 400;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    display: block;
}

.title-line--primary {
    color: var(--brand-burgundy);
}

.title-line--pink {
    color: var(--rose-deep);
}

.hero__signature-overlay {
    position: absolute;
    top: -28px;
    left: 160px;
    font-family: var(--font-script);
    font-size: clamp(4rem, 9.5vw, 8.5rem);
    color: #3B2226;
    font-weight: 700;
    transform: rotate(-6deg);
    z-index: 5;
    pointer-events: none;
    text-shadow: 0 4px 20px rgba(255, 255, 255, 0.95);
}

.hero__founder-portrait {
    position: absolute;
    top: 5px;
    right: 0;
    width: 320px;
    z-index: 4;
}

.portrait-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 155, 158, 0.5) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
}

.portrait-card {
    position: relative;
    background: #FFFFFF;
    border-radius: 20px;
    padding: 10px;
    box-shadow: 0 25px 60px rgba(90, 42, 50, 0.15);
    border: 2px solid #FFFFFF;
    transition: var(--transition-base);
}

.portrait-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 70px rgba(90, 42, 50, 0.2);
}

.portrait-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    object-position: center;
    border-radius: 14px;
    display: block;
}

.portrait-tag {
    padding: 10px 12px 4px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.portrait-name {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--brand-burgundy);
}

.portrait-role {
    font-size: 0.78rem;
    color: var(--rose-deep);
}

.stamp-badge {
    position: absolute;
    top: -20px;
    right: -15px;
    width: 115px;
    height: 115px;
    z-index: 10;
}

.stamp-svg {
    width: 100%;
    height: 100%;
    animation: rotateStamp 22s linear infinite;
}

@keyframes rotateStamp {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.stamp-center-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 38px;
    height: 38px;
    background: var(--bg-surface);
    border: 1px solid var(--border-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-card);
}

.hero__footer-row {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 30px;
    align-items: center;
    margin-top: 10px;
}

.hero__desc-text {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: 24px;
    max-width: 540px;
}

.hero__cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.hero__metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    padding: 20px 24px;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
}

.m-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.m-num {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 400;
    color: var(--rose-deep);
    line-height: 1;
}

.m-lbl {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-top: 2px;
}

/* === SEÇÕES COMPACTAS === */
.section {
    position: relative;
    padding: 45px 0;
    z-index: 1;
}

.section--compact {
    padding: 40px 0;
}

.section__header {
    max-width: 560px;
    margin: 0 auto 28px auto;
}

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

.section__subtitle {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--rose-deep);
    text-transform: uppercase;
    margin-bottom: 6px;
}

.section__title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 400;
    line-height: 1.05;
    color: var(--brand-burgundy);
    margin-bottom: 8px;
    letter-spacing: 0.02em;
}

.section__desc {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.45;
}

/* === CARDS DO REDIRECIONADOR COMPACTO === */
.links-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 660px;
    margin: 0 auto;
}

.link-card {
    position: relative;
    display: grid;
    grid-template-columns: 48px 1fr auto;
    align-items: center;
    gap: 16px;
    padding: 14px 20px;
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    text-decoration: none;
    color: var(--text-primary);
    transition: var(--transition-base);
    box-shadow: var(--shadow-card);
}

.link-card:hover {
    border-color: var(--rose-gold);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.link-card--featured {
    background: linear-gradient(135deg, rgba(248, 235, 234, 0.7) 0%, #FFFFFF 100%);
    border: 1.5px solid var(--rose-gold);
}

.link-card__badge {
    position: absolute;
    top: -9px;
    right: 16px;
    background: var(--rose-deep);
    color: #FFFFFF;
    font-size: 0.62rem;
    font-weight: 700;
    padding: 2px 10px;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.link-card__icon-box {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background: rgba(16, 185, 129, 0.1);
    color: var(--whatsapp-green);
    display: flex;
    align-items: center;
    justify-content: center;
}

.link-card__icon-box--insta {
    background: rgba(225, 48, 108, 0.1);
    color: #E1306C;
}

.link-card__icon-box--delivery {
    background: var(--bg-soft-pink);
    color: var(--rose-deep);
}

.link-card__icon {
    width: 24px;
    height: 24px;
}

.link-card__info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.link-card__title {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--brand-burgundy);
}

.link-card__desc {
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.35;
}

.link-card__arrow {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--rose-deep);
    padding: 6px 14px;
    background: var(--bg-soft-pink);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.link-card:hover .link-card__arrow {
    background: var(--rose-deep);
    color: #FFFFFF;
}

.link-card--static {
    cursor: default;
}

.link-card--static:hover {
    transform: none;
}

/* === GALERIA DE OBRAS — GRADIENTE BRANCO PORCELANA RESTAURADO === */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: #FFFFFF;
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-card);
    transition: var(--transition-base);
    cursor: pointer;
    height: 270px;
}

.gallery-item:hover {
    border-color: var(--rose-gold);
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
}

.gallery-item__inner {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.gallery-item__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item:hover .gallery-item__img {
    transform: scale(1.06);
}

.gallery-item__info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 16px 20px;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.78) 65%, transparent 100%);
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.gallery-item__num {
    font-family: var(--font-serif);
    font-size: 0.75rem;
    color: var(--rose-deep);
    letter-spacing: 0.08em;
    font-weight: 700;
}

.gallery-item__title {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--brand-burgundy);
    line-height: 1.25;
}

/* === EXPOSIÇÃO EDITORIAL ESTILO GALERIA (BANIMENTO ABSOLUTO DE CARDS E MOLDURAS FECHADAS) === */
.section--gallery-editorial {
    padding: 60px 0;
}

.gallery-editorial__header {
    text-align: center;
    margin-bottom: 40px;
}

.gallery-editorial__tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    color: var(--rose-deep);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.gallery-editorial__title {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 0.9;
}

.g-line--primary {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    color: var(--brand-burgundy);
    letter-spacing: 0.02em;
}

.g-line--script {
    font-family: var(--font-script);
    font-size: clamp(3.2rem, 7vw, 5.5rem);
    color: var(--rose-deep);
    font-weight: 700;
    margin-top: -12px;
}

.gallery-editorial__stage {
    display: flex;
    flex-direction: column;
    gap: 45px;
}

/* SPOTLIGHT DE ARTE (BLOCO ASSIMÉTRICO DE PASSE-PARTOUT) */
.art-spotlight {
    position: relative;
    width: 100%;
    padding: 36px 40px;
}

.art-spotlight__backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 90%;
    height: 100%;
    background: linear-gradient(135deg, rgba(248, 235, 234, 0.8) 0%, rgba(242, 220, 221, 0.4) 100%);
    border-radius: 28px;
    z-index: 0;
}

.art-spotlight__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 20px;
    align-items: flex-start;
}

.art-number {
    font-family: var(--font-script);
    font-size: 4.5rem;
    font-weight: 700;
    color: var(--rose-gold);
    line-height: 0.8;
}

.art-spotlight__heading {
    font-family: var(--font-serif);
    font-size: 1.85rem;
    font-weight: 700;
    color: var(--brand-burgundy);
    margin-bottom: 12px;
    line-height: 1.2;
}

.art-spotlight__text {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.65;
    max-width: 680px;
    margin-bottom: 18px;
}

.art-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: #FFFFFF;
    border: 1px solid var(--border-accent);
    border-radius: var(--radius-full);
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--brand-burgundy);
    box-shadow: 0 4px 15px rgba(90, 42, 50, 0.05);
}

/* PAINEL DE COLUNAS EDITORIAIS SOLTAS NO ESPAÇO */
.art-pillars-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.art-pillar-item {
    position: relative;
    padding-left: 20px;
    border-left: 1.5px solid rgba(181, 101, 108, 0.25);
    transition: var(--transition-base);
}

.art-pillar-item:hover {
    border-left-color: var(--rose-deep);
    transform: translateX(4px);
}

.art-pillar-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.art-pillar-num {
    font-family: var(--font-script);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--rose-gold);
    line-height: 1;
}

.art-pillar-icon {
    width: 26px;
    height: 26px;
    color: var(--rose-deep);
}

.art-pillar-title {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--brand-burgundy);
    margin-bottom: 8px;
    line-height: 1.2;
}

.art-pillar-desc {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.55;
}

/* === SEÇÃO CTA FINAL REFINADA === */
.section--cta-final {
    padding-bottom: 60px;
}

.cta-box {
    position: relative;
    padding: 40px 24px;
    background: linear-gradient(135deg, rgba(248, 235, 234, 0.9) 0%, #FFFFFF 100%);
    border: 1.5px solid var(--rose-gold);
    border-radius: var(--radius-lg);
    text-align: center;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}

.cta-box__badge {
    display: inline-block;
    padding: 4px 14px;
    background: var(--bg-soft-pink);
    border: 1px solid var(--border-accent);
    border-radius: var(--radius-full);
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--rose-deep);
    margin-bottom: 12px;
    letter-spacing: 0.05em;
}

.cta-box__title {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 3.2vw, 2.5rem);
    line-height: 1.2;
    margin-bottom: 10px;
    color: var(--brand-burgundy);
}

.cta-box__desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    max-width: 480px;
    margin: 0 auto 24px auto;
}

.cta-box__footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 16px;
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* === FOOTER EDITORIAL === */
.footer {
    padding: 30px 0 24px 0;
    border-top: 1px solid var(--border-subtle);
    background: var(--bg-soft-pink);
}

.footer__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px;
}

.footer__logo {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--brand-burgundy);
}

.footer__tagline {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 2px;
}

.footer__info {
    text-align: right;
    font-size: 0.78rem;
    color: var(--text-muted);
}

.footer__credit {
    margin-top: 2px;
    color: var(--rose-deep);
}

/* === LIGHTBOX MODAL HIGH-END LUXURY === */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox.active {
    opacity: 1;
    pointer-events: auto;
}

.lightbox__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(40, 20, 24, 0.78);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.lightbox__card {
    position: relative;
    z-index: 2;
    max-width: 780px;
    width: 100%;
    max-height: 90vh;
    background: #FFFFFF;
    border: 1.5px solid var(--rose-gold);
    border-radius: 24px;
    padding: 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: center;
    box-shadow: 0 30px 80px rgba(90, 42, 50, 0.3);
    overflow-y: auto;
    overflow-x: hidden;
}

.lightbox__close {
    position: absolute;
    top: 14px;
    right: 14px;
    background: var(--bg-soft-pink);
    border: 1px solid var(--border-accent);
    color: var(--brand-burgundy);
    font-size: 1.25rem;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.lightbox__close:hover {
    background: var(--rose-deep);
    color: #FFFFFF;
}

.lightbox__media {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 260px;
    border-radius: 16px;
    overflow: hidden;
    background: var(--bg-soft-pink);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
}

.lightbox__img {
    width: 100%;
    height: 100%;
    max-height: 360px;
    object-fit: contain !important;
    border-radius: 12px;
    display: block;
}

.lightbox__details {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
    padding-right: 10px;
}

.lightbox__badge {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--rose-deep);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.lightbox__title {
    font-family: var(--font-serif);
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--brand-burgundy);
    line-height: 1.2;
}

.lightbox__desc {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.lightbox__wpp-btn {
    width: 100%;
    padding: 14px 20px;
    font-size: 0.9rem;
    margin-top: 6px;
}

/* === OCULTAR TAG/BADGE NO MOBILE (< 768px) === */
@media (max-width: 768px) {
    .hero__tag-subtle {
        display: none !important;
    }
}

/* === RESPONSIVIDADE MOBILE-FIRST (ABOVE THE FOLD, FOTO & GALERIA EDITORIAL) === */
@media (max-width: 992px) {
    .hero__founder-portrait {
        position: relative;
        top: 0;
        right: 0;
        width: 100%;
        max-width: 280px;
        margin: 16px auto 0 auto;
    }

    .hero__signature-overlay {
        left: 50%;
        transform: translateX(-50%) rotate(-6deg);
        top: -22px;
    }

    .hero__giant-title {
        text-align: center;
    }

    .hero__footer-row {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }

    .hero__desc-text {
        margin-left: auto;
        margin-right: auto;
    }

    .hero__cta-group {
        justify-content: center;
    }

    .hero__metrics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .art-pillars-row {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .art-spotlight {
        padding: 24px 20px;
    }

    .art-spotlight__backdrop {
        width: 100%;
    }

    .art-spotlight__inner {
        grid-template-columns: 1fr;
        gap: 8px;
    }
}

@media (max-width: 640px) {
    .section,
    .section--compact {
        padding: 30px 0;
    }

    .header {
        top: 8px;
    }

    .header__inner {
        padding: 8px 16px;
    }

    .header__badge {
        display: none;
    }

    .hero {
        padding-top: 68px;
        padding-bottom: 20px;
        min-height: auto;
    }

    .hero__headline-stage {
        margin-top: 0;
        margin-bottom: 10px;
    }

    .title-line {
        font-size: 3.4rem;
        line-height: 0.88;
    }

    .hero__signature-overlay {
        font-size: 3rem;
        top: -14px;
    }

    .hero__desc-text {
        font-size: 0.88rem;
        line-height: 1.45;
        margin-bottom: 12px;
    }

    .hero__cta-group {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-bottom: 16px;
    }

    .btn--hero {
        width: 100%;
        padding: 13px 20px;
        font-size: 0.88rem;
    }

    .hero__founder-portrait {
        width: 100%;
        max-width: 250px;
        margin: 12px auto 0 auto;
    }

    .portrait-img {
        width: 100% !important;
        height: 240px !important;
        object-fit: cover !important;
        object-position: center top !important;
        border-radius: 14px;
        display: block;
    }

    .portrait-tag {
        padding: 6px 8px 2px 8px;
    }

    .portrait-name {
        font-size: 1rem;
    }

    .portrait-role {
        font-size: 0.72rem;
    }

    .stamp-badge {
        width: 85px;
        height: 85px;
        top: -10px;
        right: -10px;
    }

    .hero__metrics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        padding: 12px;
    }

    .m-num {
        font-size: 1.6rem;
    }

    .m-lbl {
        font-size: 0.68rem;
    }

    .link-card {
        grid-template-columns: 44px 1fr;
        gap: 10px;
        padding: 12px 14px;
    }

    .link-card__icon-box {
        width: 42px;
        height: 42px;
    }

    .link-card__icon {
        width: 20px;
        height: 20px;
    }

    .link-card__arrow {
        grid-column: span 2;
        justify-content: center;
        width: 100%;
        margin-top: 4px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .gallery-item {
        height: 190px;
    }

    .gallery-item__info {
        padding: 10px 12px;
        background: linear-gradient(to top, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.8) 65%, transparent 100%);
    }

    .gallery-item__title {
        font-size: 0.92rem;
        color: var(--brand-burgundy);
    }

    /* EXPOSIÇÃO EDITORIAL NO MOBILE — PURE WHITESPACE & DELICATE ACCENT BORDERS */
    .gallery-editorial__stage {
        gap: 30px;
    }

    .art-spotlight {
        padding: 20px 16px;
    }

    .art-spotlight__heading {
        font-size: 1.4rem;
    }

    .art-spotlight__text {
        font-size: 0.88rem;
        line-height: 1.5;
    }

    .art-number {
        font-size: 3.2rem;
    }

    .art-pillars-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .art-pillar-item {
        padding-left: 14px;
        border-left: 2px solid var(--rose-gold);
    }

    .art-pillar-title {
        font-size: 1.15rem;
    }

    .art-pillar-desc {
        font-size: 0.85rem;
    }

    /* MODAL LIGHTBOX MOBILE */
    .lightbox {
        padding: 12px;
    }

    .lightbox__card {
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 16px;
        max-height: 88vh;
        border-radius: 20px;
    }

    .lightbox__media {
        min-height: 210px;
        height: 230px;
        background: var(--bg-soft-pink);
        border-radius: 14px;
        padding: 6px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .lightbox__img {
        width: 100% !important;
        height: 100% !important;
        max-height: 218px !important;
        object-fit: contain !important;
        border-radius: 10px;
    }

    .lightbox__details {
        gap: 8px;
        padding-right: 0;
    }

    .lightbox__title {
        font-size: 1.2rem;
    }

    .lightbox__desc {
        font-size: 0.82rem;
        line-height: 1.4;
    }

    .lightbox__wpp-btn {
        padding: 12px 16px;
        font-size: 0.85rem;
    }

    .footer__inner {
        flex-direction: column;
        text-align: center;
    }

    .footer__info {
        text-align: center;
    }
}

/* === REDUCED MOTION === */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    [data-scroll] {
        opacity: 1 !important;
        transform: none !important;
    }

    .stamp-svg {
        animation: none !important;
    }
}