/* ===========================
     TOKENS & RESET
     =========================== */
  :root {
    --nude: #F5EDE0;
    --nude-soft: #FAF5EC;
    --off-white: #FAFAF7;
    --gold: #C9A96E;
    --gold-deep: #A8894F;
    --gold-dark: #8B6914;
    --brown: #6B4E3D;
    --brown-soft: #8A6B56;
    --ink: #2C1F16;

```
--font-display: 'Cormorant Garamond', serif;
--font-body: 'Inter', system-ui, sans-serif;

--radius: 18px;
--radius-lg: 28px;
--shadow-soft: 0 10px 40px -15px rgba(107, 78, 61, 0.18);
--shadow-gold: 0 18px 50px -20px rgba(201, 169, 110, 0.55);

--ease: cubic-bezier(.22,.61,.36,1);
```

}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
font-family: var(--font-body);
background: var(--off-white);
color: var(--ink);
line-height: 1.6;
overflow-x: hidden;
-webkit-font-smoothing: antialiased;
}

/* Textura de noise sutil no body */
body::before {
content: "";
position: fixed; inset: 0;
pointer-events: none;
z-index: 0;
opacity: .35;
background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.42 0 0 0 0 0.30 0 0 0 0 0.24 0 0 0 0.35 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
mix-blend-mode: multiply;
}

.container { width: 92%; max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }

h1, h2, h3, .display { font-family: var(--font-display); font-weight: 500; letter-spacing: -.01em; }
.italic { font-style: italic; }

a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ===========================
NAVBAR
=========================== */
.navbar {
position: fixed; top: 0; left: 0; right: 0;
z-index: 100;
padding: 18px 0;
transition: all .35s var(--ease);
}
.navbar.scrolled {
background: rgba(250, 245, 236, .72);
backdrop-filter: blur(18px) saturate(160%);
-webkit-backdrop-filter: blur(18px) saturate(160%);
border-bottom: 1px solid rgba(201, 169, 110, .2);
padding: 12px 0;
box-shadow: 0 6px 30px -18px rgba(107, 78, 61, .25);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name { font-family: var(--font-display); font-style: italic; font-size: 1.45rem; color: var(--brown); letter-spacing: .02em; }
.brand-tag { font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-deep); margin-top: 2px; }

.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
font-size: .88rem;
font-weight: 500;
letter-spacing: .04em;
color: var(--brown);
position: relative;
transition: color .25s;
}
.nav-links a::after {
content: ""; position: absolute; left: 0; bottom: -6px;
width: 0; height: 1.5px; background: var(--gold);
transition: width .3s var(--ease);
}
.nav-links a:hover { color: var(--gold-dark); }
.nav-links a:hover::after { width: 100%; }

.btn-gold {
display: inline-flex; align-items: center; gap: 8px;
padding: 12px 26px;
background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
color: white;
border-radius: 999px;
font-size: .85rem;
letter-spacing: .06em;
font-weight: 500;
box-shadow: var(--shadow-gold);
transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.btn-gold:hover { transform: translateY(-2px) scale(1.02); box-shadow: 0 22px 60px -18px rgba(201, 169, 110, .75); }

.btn-outline {
display: inline-flex; align-items: center; gap: 8px;
padding: 12px 26px;
border: 1.5px solid var(--gold);
color: var(--brown);
border-radius: 999px;
font-size: .85rem;
letter-spacing: .06em;
font-weight: 500;
background: transparent;
transition: all .3s var(--ease);
}
.btn-outline:hover { background: var(--gold); color: white; }

.burger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.burger span { width: 24px; height: 2px; background: var(--brown); transition: all .3s; }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
.nav-links {
position: fixed; top: 0; right: -100%;
flex-direction: column; align-items: flex-start;
width: 75%; max-width: 340px; height: 100vh;
background: var(--nude-soft);
padding: 100px 36px 40px;
gap: 28px;
transition: right .4s var(--ease);
box-shadow: -10px 0 40px -10px rgba(0,0,0,.15);
}
.nav-links.open { right: 0; }
.nav-links a { font-size: 1.1rem; }
.nav-links .btn-gold { margin-top: 10px; }
.burger { display: flex; }
}

/* ===========================
HERO
=========================== */
.hero {
min-height: 100vh;
padding: 140px 0 80px;
display: flex; align-items: center;
position: relative;
background: var(--nude);
overflow: hidden;
isolation: isolate;
}

/* Vídeo de fundo */
.hero-video-wrap {
position: absolute;
inset: 0;
overflow: hidden;
z-index: 0;
}
/* Fallback: imagem estática com Ken Burns (quando vídeo não toca) */
.hero-image-fallback {
position: absolute;
inset: -5%;
background-size: cover;
background-position: center;
animation: kenBurns 20s ease-in-out infinite alternate;
z-index: 0;
}
@keyframes kenBurns {
0%   { transform: scale(1.05) translate(0, 0); }
50%  { transform: scale(1.12) translate(-1%, -1.5%); }
100% { transform: scale(1.08) translate(1%, -0.5%); }
}
.hero-video {
position: absolute;
top: 50%;
left: 50%;
min-width: 100%;
min-height: 100%;
width: auto;
height: auto;
transform: translate(-50%, -50%) scale(1.05);
object-fit: cover;
filter: blur(0.5px);
opacity: 0;
transition: opacity 1.2s var(--ease);
z-index: 1;
}
.hero-video.is-playing { opacity: 1; }

/* Overlay multi-camada para garantir legibilidade sem esconder o vídeo */
.hero-overlay {
position: absolute;
inset: 0;
z-index: 1;
pointer-events: none;
background:
/* Vinheta central clara — onde o texto fica */
radial-gradient(ellipse 70% 55% at 50% 50%, rgba(250, 245, 236, .78) 0%, rgba(250, 245, 236, .55) 40%, rgba(245, 237, 224, .35) 70%, transparent 100%),
/* Gradient dourado atmosférico */
radial-gradient(ellipse at 20% 30%, rgba(201, 169, 110, .18) 0%, transparent 55%),
radial-gradient(ellipse at 80% 70%, rgba(201, 169, 110, .14) 0%, transparent 50%),
/* Base com tons nude da identidade */
linear-gradient(180deg, rgba(250, 245, 236, .45) 0%, rgba(245, 237, 224, .55) 100%);
}

/* Partículas douradas */
.particles { position: absolute; inset: 0; pointer-events: none; z-index: 2; }
.particle {
position: absolute;
width: 6px; height: 6px;
border-radius: 50%;
background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
animation: float linear infinite;
opacity: .6;
}
@keyframes float {
0% { transform: translateY(100vh) translateX(0) scale(0); opacity: 0; }
10% { opacity: .7; transform: translateY(85vh) translateX(0) scale(1); }
90% { opacity: .7; }
100% { transform: translateY(-10vh) translateX(50px) scale(.4); opacity: 0; }
}

.hero-content { position: relative; z-index: 3; text-align: center; max-width: 820px; margin: 0 auto; }

@media (prefers-reduced-motion: reduce) {
.hero-video { display: none; }
}
@media (max-width: 600px) {
/* Em telas pequenas reforçar um pouco o overlay */
.hero-overlay {
background:
radial-gradient(ellipse 85% 60% at 50% 50%, rgba(250, 245, 236, .88) 0%, rgba(250, 245, 236, .6) 50%, transparent 100%),
linear-gradient(180deg, rgba(250, 245, 236, .55) 0%, rgba(245, 237, 224, .65) 100%);
}
}

.hero-kicker {
display: inline-flex; align-items: center; gap: 10px;
padding: 8px 20px;
background: rgba(255,255,255,.6);
border: 1px solid rgba(201, 169, 110, .35);
border-radius: 999px;
font-size: .72rem;
letter-spacing: .22em;
text-transform: uppercase;
color: var(--gold-dark);
margin-bottom: 30px;
backdrop-filter: blur(10px);
}
.hero-kicker::before, .hero-kicker::after {
content: ""; width: 30px; height: 1px; background: var(--gold);
}

.hero h1 {
font-size: clamp(2.4rem, 6vw, 4.8rem);
line-height: 1.05;
color: var(--ink);
margin-bottom: 24px;
}
.hero h1 .accent { font-style: italic; color: var(--gold-dark); }
.typewriter-cursor {
display: inline-block;
width: 3px;
background: var(--gold);
animation: blink 1s infinite;
margin-left: 4px;
vertical-align: middle;
}
@keyframes blink { 50% { opacity: 0; } }

.hero-sub {
font-size: clamp(1rem, 1.6vw, 1.2rem);
color: var(--brown);
max-width: 600px;
margin: 0 auto 40px;
opacity: 0;
animation: fadeUp 1s .8s forwards var(--ease);
}
@keyframes fadeUp {
from { opacity: 0; transform: translateY(20px); }
to { opacity: 1; transform: translateY(0); }
}

.hero-ctas {
display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
opacity: 0;
animation: fadeUp 1s 1.1s forwards var(--ease);
}

.btn-wa {
display: inline-flex; align-items: center; gap: 10px;
padding: 16px 32px;
background: linear-gradient(135deg, #C9A96E, #8B6914);
color: white;
border-radius: 999px;
font-weight: 500;
letter-spacing: .04em;
box-shadow: 0 18px 45px -15px rgba(139, 105, 20, .6);
position: relative;
transition: transform .3s;
}
.btn-wa::before {
content: "";
position: absolute; inset: -4px;
border-radius: 999px;
border: 2px solid rgba(201, 169, 110, .5);
animation: pulsering 2s infinite;
}
@keyframes pulsering {
0% { transform: scale(1); opacity: .7; }
100% { transform: scale(1.15); opacity: 0; }
}
.btn-wa:hover { transform: translateY(-3px); }

.hero-badge {
position: absolute;
bottom: 60px; left: 8%;
padding: 14px 22px;
background: white;
border-radius: 999px;
box-shadow: var(--shadow-soft);
font-size: .82rem;
color: var(--brown);
font-weight: 500;
display: flex; align-items: center; gap: 8px;
animation: floatBadge 4s ease-in-out infinite;
z-index: 4;
}
.hero-badge .star { color: var(--gold); }
@keyframes floatBadge {
0%, 100% { transform: translateY(0); }
50% { transform: translateY(-10px); }
}
@media (max-width: 900px) {
.hero-badge {
left: 50%;
bottom: 24px;
font-size: .75rem;
padding: 10px 18px;
}
@keyframes floatBadge {
0%, 100% { transform: translateX(-50%) translateY(0); }
50% { transform: translateX(-50%) translateY(-8px); }
}
}

/* ===========================
SECTION BASE
=========================== */
section { padding: 120px 0; position: relative; }
@media (max-width: 768px) { section { padding: 80px 0; } }

.section-head { text-align: center; max-width: 700px; margin: 0 auto 70px; }
.section-kicker {
display: inline-block;
font-size: .72rem;
letter-spacing: .28em;
text-transform: uppercase;
color: var(--gold-deep);
margin-bottom: 14px;
position: relative;
padding: 0 40px;
}
.section-kicker::before, .section-kicker::after {
content: ""; position: absolute; top: 50%; width: 28px; height: 1px; background: var(--gold);
}
.section-kicker::before { left: 0; }
.section-kicker::after { right: 0; }

.section-title {
font-size: clamp(2rem, 4vw, 3.2rem);
line-height: 1.1;
color: var(--ink);
}
.section-title .italic { color: var(--gold-dark); }
.section-sub { margin-top: 18px; color: var(--brown); font-size: 1.05rem; }

/* ===========================
SERVIÇOS (FLIP CARDS)
=========================== */
.services-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 26px;
}
.service-card {
aspect-ratio: 1/1.15;
position: relative;
cursor: pointer;
}
.service-inner {
position: relative;
width: 100%; height: 100%;
}

.service-face {
position: absolute; inset: 0;
border-radius: var(--radius-lg);
padding: 36px 28px;
display: flex; flex-direction: column;
overflow: hidden;
transition: opacity .5s var(--ease), transform .6s var(--ease);
-webkit-transform: translateZ(0);
transform: translateZ(0);
}

/* Estado padrão: front visível, back escondido */
.service-front {
background: linear-gradient(165deg, var(--nude-soft) 0%, var(--nude) 100%);
border: 1px solid rgba(201, 169, 110, .25);
box-shadow: var(--shadow-soft);
justify-content: space-between;
opacity: 1;
transform: scale(1);
z-index: 2;
}
.service-back {
background: linear-gradient(165deg, var(--brown) 0%, #4A352A 100%);
color: white;
justify-content: space-between;
opacity: 0;
transform: scale(.95);
z-index: 1;
pointer-events: none;
}

/* Estado revelado: back aparece, front desaparece */
.service-card:hover .service-front,
.service-card.flipped .service-front {
opacity: 0;
transform: scale(1.05);
pointer-events: none;
}
.service-card:hover .service-back,
.service-card.flipped .service-back {
opacity: 1;
transform: scale(1);
z-index: 3;
pointer-events: auto;
}

.service-front::before {
content: "";
position: absolute;
top: -40px; right: -40px;
width: 150px; height: 150px;
background: radial-gradient(circle, rgba(201, 169, 110, .25), transparent 70%);
border-radius: 50%;
}
.service-icon {
width: 64px; height: 64px;
border-radius: 16px;
background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
display: flex; align-items: center; justify-content: center;
box-shadow: 0 10px 25px -8px rgba(201, 169, 110, .6);
position: relative; z-index: 1;
}
.service-icon svg { width: 32px; height: 32px; stroke: white; fill: none; stroke-width: 1.5; }

.service-name {
font-family: var(--font-display);
font-style: italic;
font-size: 1.8rem;
line-height: 1.15;
color: var(--ink);
position: relative; z-index: 1;
}
.service-hint {
font-size: .72rem;
letter-spacing: .2em;
text-transform: uppercase;
color: var(--gold-deep);
display: flex; align-items: center; gap: 8px;
position: relative; z-index: 1;
}
.service-hint::after { content: "↻"; font-size: 1rem; }

.service-back::before {
content: "";
position: absolute;
inset: 1px;
border-radius: calc(var(--radius-lg) - 1px);
border: 1px solid rgba(201, 169, 110, .35);
pointer-events: none;
}
.service-back h3 {
font-size: 1.4rem;
font-style: italic;
color: var(--gold);
margin-bottom: 14px;
}
.service-back p {
font-size: .92rem;
color: rgba(255,255,255,.85);
line-height: 1.6;
}
.service-back .btn-gold { align-self: flex-start; margin-top: 20px; padding: 10px 20px; font-size: .78rem; }

/* ===========================
DIFERENCIAIS
=========================== */
.diff-section {
background: linear-gradient(180deg, var(--off-white) 0%, var(--nude-soft) 100%);
}
.diff-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
gap: 30px;
}
.diff-item {
text-align: center;
padding: 30px 20px;
opacity: 0;
transform: translateY(30px);
transition: all .8s var(--ease);
position: relative;
}
.diff-item.in { opacity: 1; transform: translateY(0); }

/* Ícone container premium */
.diff-icon {
width: 84px;
height: 84px;
border-radius: 50%;
margin: 0 auto 22px;
position: relative;
display: flex;
align-items: center;
justify-content: center;
background: linear-gradient(145deg, #FFFFFF 0%, var(--nude-soft) 100%);
box-shadow:
0 14px 30px -10px rgba(201, 169, 110, .35),
0 0 0 1px rgba(201, 169, 110, .15),
inset 0 1px 0 rgba(255, 255, 255, .9);
transition: all .5s var(--ease);
}
/* Anel externo decorativo */
.diff-icon::before {
content: "";
position: absolute;
inset: -6px;
border-radius: 50%;
border: 1px solid rgba(201, 169, 110, .3);
opacity: 0;
transition: all .5s var(--ease);
}
/* Círculo dourado interno atrás do ícone */
.diff-icon::after {
content: "";
position: absolute;
inset: 10px;
border-radius: 50%;
background: linear-gradient(135deg, rgba(201, 169, 110, .12) 0%, rgba(201, 169, 110, .04) 100%);
transition: all .5s var(--ease);
}
.diff-item:hover .diff-icon {
transform: translateY(-4px) scale(1.05);
box-shadow:
0 22px 40px -12px rgba(201, 169, 110, .5),
0 0 0 1px rgba(201, 169, 110, .25),
inset 0 1px 0 rgba(255, 255, 255, .9);
}
.diff-item:hover .diff-icon::before {
opacity: 1;
inset: -10px;
}

/* SVG dentro do ícone */
.diff-icon svg {
width: 34px;
height: 34px;
stroke: var(--gold-dark);
fill: none;
stroke-width: 1.4;
stroke-linecap: round;
stroke-linejoin: round;
position: relative;
z-index: 1;
transition: transform .5s var(--ease);
}
.diff-item:hover .diff-icon svg { transform: scale(1.1); }

/* Divisor dourado entre ícone e título */
.diff-divider {
width: 24px;
height: 1px;
background: linear-gradient(90deg, transparent, var(--gold), transparent);
margin: 0 auto 12px;
opacity: .7;
}

.diff-item h4 {
font-family: var(--font-display);
font-style: italic;
font-size: 1.3rem;
color: var(--ink);
margin-bottom: 10px;
letter-spacing: -.01em;
}
.diff-item p {
font-size: .92rem;
color: var(--brown);
line-height: 1.55;
max-width: 220px;
margin: 0 auto;
}

/* ===========================
COMO FUNCIONA (TIMELINE)
=========================== */
.timeline-wrap { position: relative; padding: 40px 0; }
.timeline-line {
position: absolute;
top: 104px; left: 10%; right: 10%;
height: 2px;
background: rgba(201, 169, 110, .2);
z-index: 0;
}
.timeline-line-fill {
position: absolute; inset: 0;
background: linear-gradient(90deg, var(--gold), var(--gold-deep));
width: 0;
transition: width 2s var(--ease);
}
.timeline-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 24px;
position: relative;
z-index: 1;
}
.tl-step {
text-align: center;
position: relative;
}

/* Círculo do ícone - refinado */
.tl-circle {
width: 88px;
height: 88px;
margin: 0 auto 22px;
border-radius: 50%;
background: linear-gradient(145deg, #FFFFFF 0%, var(--nude-soft) 100%);
display: flex;
align-items: center;
justify-content: center;
box-shadow:
0 14px 30px -10px rgba(201, 169, 110, .4),
0 0 0 1px rgba(201, 169, 110, .2),
inset 0 1px 0 rgba(255, 255, 255, .9);
position: relative;
transition: all .5s var(--ease);
}
/* Anel decorativo externo */
.tl-circle::before {
content: "";
position: absolute;
inset: -8px;
border-radius: 50%;
border: 1px solid rgba(201, 169, 110, .35);
opacity: .7;
transition: all .5s var(--ease);
}
/* Fundo interno sutil */
.tl-circle::after {
content: "";
position: absolute;
inset: 10px;
border-radius: 50%;
background: linear-gradient(135deg, rgba(201, 169, 110, .1) 0%, transparent 60%);
}
.tl-step:hover .tl-circle {
transform: translateY(-4px) scale(1.05);
box-shadow:
0 22px 40px -12px rgba(201, 169, 110, .55),
0 0 0 1px rgba(201, 169, 110, .3),
inset 0 1px 0 rgba(255, 255, 255, .9);
}
.tl-step:hover .tl-circle::before {
inset: -14px;
opacity: 1;
}

/* SVG dentro do círculo */
.tl-circle svg {
width: 36px;
height: 36px;
stroke: var(--gold-dark);
fill: none;
stroke-width: 1.4;
stroke-linecap: round;
stroke-linejoin: round;
position: relative;
z-index: 1;
transition: transform .5s var(--ease);
}
.tl-step:hover .tl-circle svg { transform: scale(1.1); }

/* Badge numérico */
.tl-num {
position: absolute;
top: -6px;
right: -6px;
width: 30px;
height: 30px;
background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
color: white;
border-radius: 50%;
font-size: .78rem;
font-weight: 600;
display: flex;
align-items: center;
justify-content: center;
font-family: var(--font-body);
box-shadow: 0 4px 12px rgba(139, 105, 20, .45);
border: 2px solid white;
z-index: 2;
}

/* Divisor dourado */
.tl-divider {
width: 24px;
height: 1px;
background: linear-gradient(90deg, transparent, var(--gold), transparent);
margin: 0 auto 12px;
opacity: .7;
}

.tl-step h4 {
font-family: var(--font-display);
font-style: italic;
font-size: 1.2rem;
color: var(--ink);
margin-bottom: 8px;
letter-spacing: -.01em;
}
.tl-step p {
font-size: .88rem;
color: var(--brown);
line-height: 1.55;
max-width: 220px;
margin: 0 auto;
}

@media (max-width: 820px) {
.timeline-line { display: none; }
.timeline-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 20px; }
}

/* ===========================
SOBRE
=========================== */
.about-section { background: var(--nude-soft); }
.about-grid {
display: grid;
grid-template-columns: 1fr 1.2fr;
gap: 70px;
align-items: center;
}
@media (max-width: 900px) {
.about-grid { grid-template-columns: 1fr; gap: 50px; text-align: center; }
}

.about-photo-wrap {
position: relative;
display: flex;
justify-content: center;
perspective: 1200px;
}

.about-photo {
width: 100%;
max-width: 440px;
aspect-ratio: 4/5;
border-radius: 10px;
background-image: url('../images/img-02-7c4ad46bb12e.webp');
background-size: cover;
background-position: center top;
position: relative;
overflow: hidden;
box-shadow:
0 30px 70px -20px rgba(107, 78, 61, .45),
0 10px 30px -10px rgba(201, 169, 110, .3);
z-index: 2;
transform-style: preserve-3d;
transition: transform 1s cubic-bezier(.22,.61,.36,1), box-shadow .6s var(--ease);
will-change: transform;
animation: photoBreath 6s ease-in-out infinite;
}

/* Respiração ambiente sutil */
@keyframes photoBreath {
0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
50% { transform: translate3d(0, -6px, 0) scale(1.008); }
}

/* Brilho cinematográfico que atravessa */
.about-photo::before {
content: "";
position: absolute;
top: 0; left: -100%;
width: 60%; height: 100%;
background: linear-gradient(
105deg,
transparent 0%,
rgba(255, 255, 255, .18) 45%,
rgba(255, 245, 220, .25) 50%,
rgba(255, 255, 255, .18) 55%,
transparent 100%
);
transform: skewX(-20deg);
z-index: 3;
pointer-events: none;
animation: shine 5s ease-in-out 2s infinite;
}
@keyframes shine {
0%, 70%, 100% { left: -100%; }
85% { left: 150%; }
}

/* Passe-partout branco interno */
.about-photo::after {
content: "";
position: absolute;
inset: 12px;
border: 1px solid rgba(255, 255, 255, .4);
border-radius: 5px;
pointer-events: none;
z-index: 2;
transition: inset .6s var(--ease), border-color .6s var(--ease);
}

/* Moldura dourada deslocada atrás */
.about-frame {
position: absolute;
inset: 0;
max-width: 440px;
margin: auto;
aspect-ratio: 4/5;
border: 1.5px solid var(--gold);
border-radius: 10px;
transform: translate3d(18px, 18px, 0);
transition: transform .9s cubic-bezier(.22,.61,.36,1);
opacity: .65;
pointer-events: none;
animation: frameBreath 6s ease-in-out infinite;
}
@keyframes frameBreath {
0%, 100% { transform: translate3d(18px, 18px, 0); }
50% { transform: translate3d(22px, 24px, 0); }
}

/* Segunda moldura (linha tracejada bem sutil, mais pra fora) */
.about-frame-2 {
position: absolute;
inset: -8px;
max-width: 456px;
margin: auto;
aspect-ratio: 4/5;
border: 1px dashed rgba(201, 169, 110, .4);
border-radius: 14px;
pointer-events: none;
transition: inset .8s var(--ease);
}

/* HOVER - movimento 3D cinematográfico */
.about-photo-wrap:hover .about-photo {
animation-play-state: paused;
transform: translate3d(6px, -4px, 30px) rotateY(-3deg) rotateX(2deg) scale(1.02);
box-shadow:
0 50px 90px -25px rgba(107, 78, 61, .55),
0 20px 40px -15px rgba(201, 169, 110, .4),
-10px 0 30px -10px rgba(201, 169, 110, .3);
}
.about-photo-wrap:hover .about-photo::after {
inset: 18px;
border-color: rgba(255, 255, 255, .6);
}
.about-photo-wrap:hover .about-frame {
animation-play-state: paused;
transform: translate3d(0, 0, 0);
opacity: .9;
}
.about-photo-wrap:hover .about-frame-2 {
inset: -18px;
}

/* Cantos dourados decorativos */
.about-photo-wrap .corner {
position: absolute;
width: 60px;
height: 60px;
z-index: 4;
pointer-events: none;
opacity: 0;
transition: all .8s var(--ease);
}
.about-photo-wrap.in .corner { opacity: .9; }

.about-photo-wrap .corner-tl {
top: -18px; left: -18px;
border-top: 2px solid var(--gold);
border-left: 2px solid var(--gold);
border-top-left-radius: 12px;
transform: translate(10px, 10px);
}
.about-photo-wrap.in .corner-tl { transform: translate(0, 0); }

.about-photo-wrap .corner-br {
bottom: -18px; right: -18px;
border-bottom: 2px solid var(--gold);
border-right: 2px solid var(--gold);
border-bottom-right-radius: 12px;
transform: translate(-10px, -10px);
}
.about-photo-wrap.in .corner-br { transform: translate(0, 0); }

.about-photo-wrap:hover .corner-tl { transform: translate(-6px, -6px); }
.about-photo-wrap:hover .corner-br { transform: translate(6px, 6px); }

/* Badge flutuante com assinatura */
.about-signature {
position: absolute;
bottom: 36px;
left: -28px;
background: white;
padding: 16px 24px;
border-radius: 6px;
box-shadow: 0 18px 40px -12px rgba(107, 78, 61, .4);
z-index: 5;
border-left: 3px solid var(--gold);
transition: transform .6s var(--ease), box-shadow .6s var(--ease);
}
.about-photo-wrap:hover .about-signature {
transform: translate(-6px, 4px);
box-shadow: 0 25px 50px -12px rgba(107, 78, 61, .5);
}
.about-signature-name {
font-family: var(--font-display);
font-style: italic;
font-size: 1.25rem;
color: var(--ink);
line-height: 1.1;
margin-bottom: 4px;
white-space: nowrap;
}
.about-signature-role {
font-size: .62rem;
letter-spacing: .22em;
text-transform: uppercase;
color: var(--gold-dark);
}

@media (max-width: 900px) {
.about-photo { max-width: 360px; }
.about-frame { max-width: 360px; }
.about-frame-2 { max-width: 376px; }
.about-signature { left: 50%; transform: translateX(-50%); bottom: -22px; }
.about-photo-wrap:hover .about-signature { transform: translateX(-50%) translateY(4px); }
.about-photo-wrap { margin-bottom: 50px; }
}
@media (prefers-reduced-motion: reduce) {
.about-photo, .about-frame { animation: none; }
.about-photo::before { display: none; }
}

.about-text h2 { margin-bottom: 22px; }
.about-text p { color: var(--brown); margin-bottom: 16px; font-size: 1.02rem; }
.about-text .highlight { font-family: var(--font-display); font-style: italic; font-size: 1.15rem; color: var(--gold-dark); }

.stats {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 20px;
margin-top: 36px;
padding-top: 36px;
border-top: 1px solid rgba(201, 169, 110, .3);
}
.stat-num {
font-family: var(--font-display);
font-size: 2.6rem;
color: var(--gold-dark);
line-height: 1;
font-weight: 500;
}
.stat-label { font-size: .78rem; color: var(--brown); text-transform: uppercase; letter-spacing: .1em; margin-top: 6px; }

/* ===========================
DEPOIMENTOS
=========================== */
.testi-section { background: linear-gradient(180deg, var(--nude) 0%, var(--nude-soft) 100%); }
.testi-wrap { position: relative; max-width: 800px; margin: 0 auto; }
.testi-track {
position: relative;
display: grid;
}
.testi-card {
grid-area: 1 / 1;
background: white;
border-radius: var(--radius-lg);
padding: 56px 40px 44px;
box-shadow: var(--shadow-soft);
text-align: center;
opacity: 0;
visibility: hidden;
transition: opacity .6s var(--ease), visibility 0s .6s;
border: 1px solid rgba(201, 169, 110, .2);
position: relative;
}
.testi-card.active {
opacity: 1;
visibility: visible;
transition: opacity .6s var(--ease), visibility 0s 0s;
}
@media (max-width: 600px) {
.testi-card { padding: 60px 24px 32px; }
.testi-source { top: 14px; right: 14px; font-size: .58rem; padding: 4px 8px; }
.testi-text { font-size: 1rem; }
}
.testi-avatar {
width: 74px; height: 74px;
border-radius: 50%;
margin: 0 auto 16px;
background: linear-gradient(135deg, var(--gold), var(--brown-soft));
display: flex; align-items: center; justify-content: center;
color: white;
font-family: var(--font-display);
font-size: 1.6rem;
font-style: italic;
}
.testi-stars { color: var(--gold); letter-spacing: 3px; margin-bottom: 16px; font-size: 1rem; }
.testi-text {
font-family: var(--font-display);
font-style: italic;
font-size: 1.2rem;
color: var(--ink);
line-height: 1.5;
margin-bottom: 18px;
}
.testi-name { font-weight: 600; color: var(--brown); }
.testi-city { font-size: .82rem; color: var(--gold-deep); margin-top: 2px; }

/* Badge de fonte (Google / WhatsApp) */
.testi-source {
position: absolute;
top: 18px;
right: 18px;
display: inline-flex;
align-items: center;
gap: 6px;
padding: 5px 10px;
background: rgba(245, 237, 224, .6);
border: 1px solid rgba(201, 169, 110, .25);
border-radius: 999px;
font-size: .65rem;
letter-spacing: .12em;
text-transform: uppercase;
color: var(--brown);
font-weight: 500;
}
.testi-source svg { width: 12px; height: 12px; flex-shrink: 0; }

.testi-nav { display: flex; justify-content: center; gap: 14px; margin-top: 30px; }
.testi-btn {
width: 44px; height: 44px;
border-radius: 50%;
background: white;
border: 1px solid var(--gold);
color: var(--gold-dark);
display: flex; align-items: center; justify-content: center;
transition: all .3s;
}
.testi-btn:hover { background: var(--gold); color: white; }
.testi-dots { display: flex; gap: 8px; align-items: center; }
.testi-dot {
width: 8px; height: 8px;
border-radius: 50%;
background: rgba(201, 169, 110, .3);
transition: all .3s;
cursor: pointer;
}
.testi-dot.active { background: var(--gold-dark); width: 24px; border-radius: 4px; }

/* ===========================
FAQ ACCORDION
=========================== */
.faq-wrap { max-width: 820px; margin: 0 auto; }
.faq-item {
border-bottom: 1px solid rgba(201, 169, 110, .25);
transition: background .3s;
}
.faq-q {
width: 100%;
padding: 24px 0;
display: flex; justify-content: space-between; align-items: center;
font-family: var(--font-display);
font-style: italic;
font-size: 1.25rem;
color: var(--ink);
text-align: left;
gap: 16px;
}
.faq-icon {
flex-shrink: 0;
width: 32px; height: 32px;
border-radius: 50%;
background: var(--nude);
color: var(--gold-dark);
display: flex; align-items: center; justify-content: center;
font-size: 1.3rem;
transition: all .4s var(--ease);
}
.faq-item.open .faq-icon { background: var(--gold-dark); color: white; transform: rotate(45deg); }
.faq-a {
max-height: 0;
overflow: hidden;
transition: max-height .5s var(--ease);
}
.faq-a-inner {
padding: 0 0 24px;
color: var(--brown);
font-size: .98rem;
line-height: 1.7;
}

/* ===========================
CTA FINAL
=========================== */
.cta-final {
background:
radial-gradient(ellipse at 20% 50%, rgba(201, 169, 110, .35) 0%, transparent 50%),
linear-gradient(135deg, #8B6914 0%, #6B4E3D 100%);
color: white;
text-align: center;
position: relative;
overflow: hidden;
}
.cta-final::before {
content: "";
position: absolute; inset: 0;
background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.25'/></svg>");
opacity: .4;
}
.cta-final .container { position: relative; z-index: 1; }
.cta-final h2 {
font-size: clamp(2rem, 5vw, 3.6rem);
line-height: 1.1;
margin-bottom: 30px;
max-width: 720px;
margin-left: auto; margin-right: auto;
}
.cta-final h2 .italic { color: var(--gold); }
.btn-cta-big {
display: inline-flex; align-items: center; gap: 12px;
padding: 20px 40px;
background: white;
color: var(--ink);
border-radius: 999px;
font-size: 1rem;
font-weight: 600;
letter-spacing: .02em;
box-shadow: 0 20px 50px -10px rgba(0,0,0,.4);
transition: transform .3s;
}
.btn-cta-big svg { animation: bounce 1.5s ease-in-out infinite; }
@keyframes bounce {
0%, 100% { transform: translateY(0); }
50% { transform: translateY(-6px); }
}
.btn-cta-big:hover { transform: scale(1.05); }

/* ===========================
COMPARTILHE
=========================== */
.share-section {
padding: 100px 0;
background:
radial-gradient(circle at 80% 20%, rgba(201,169,110,.08), transparent 50%),
linear-gradient(180deg, var(--ink) 0%, #221814 100%);
color: var(--cream);
position: relative;
overflow: hidden;
}
.share-section::before {
content: '';
position: absolute;
inset: 0;
background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.79 0 0 0 0 0.66 0 0 0 0 0.43 0 0 0 0.04 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
opacity: .5;
pointer-events: none;
}

.share-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 70px;
align-items: center;
position: relative;
z-index: 1;
}
@media (max-width: 920px) {
.share-grid { grid-template-columns: 1fr; gap: 40px; }
}

.share-text { max-width: 480px; }
.share-text .kicker {
display: inline-block;
font-size: .8rem;
letter-spacing: .3em;
text-transform: uppercase;
color: var(--gold);
margin-bottom: 18px;
}
.share-text h2 {
font-family: var(--font-display);
font-size: clamp(2rem, 3.5vw, 2.8rem);
font-weight: 600;
line-height: 1.15;
margin-bottom: 22px;
color: #f5ede0;
text-shadow: 0 2px 4px rgba(0,0,0,.3);
}
.share-text h2 .italic { font-style: italic; color: var(--gold); }
.share-text p {
font-size: 1.02rem;
line-height: 1.7;
color: #f5ede0;
font-weight: 500;
margin-bottom: 32px;
text-shadow: 0 1px 2px rgba(0,0,0,.2);
}

.share-actions {
display: flex; flex-wrap: wrap; gap: 12px;
}
.share-btn {
display: inline-flex; align-items: center; gap: 10px;
padding: 14px 22px;
border-radius: 999px;
font-size: .95rem;
font-weight: 500;
letter-spacing: .02em;
transition: transform .3s, background .3s, box-shadow .3s, color .3s;
border: 1px solid transparent;
cursor: pointer;
background: none;
font-family: inherit;
}
.share-btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.share-btn-primary {
background: var(--gold);
color: var(--ink);
}
.share-btn-primary:hover {
transform: translateY(-2px);
background: var(--gold-soft);
box-shadow: 0 12px 28px -10px rgba(201,169,110,.6);
}
.share-btn-ghost {
background: rgba(255,255,255,.12);
border: 2px solid var(--gold);
color: var(--cream);
font-weight: 600;
}
.share-btn-ghost:hover {
background: rgba(201,169,110,.18);
border-color: var(--gold);
color: var(--cream);
transform: translateY(-2px);
box-shadow: 0 8px 20px -8px rgba(201,169,110,.4);
}
.share-btn .copied-flash { display: none; }
.share-btn.copied .copied-flash { display: inline; }
.share-btn.copied .copy-default { display: none; }

.share-card-wrap {
position: relative;
perspective: 1200px;
}
.share-card {
position: relative;
border-radius: 18px;
overflow: hidden;
box-shadow:
0 30px 60px -20px rgba(0,0,0,.6),
0 0 0 1px rgba(201,169,110,.25),
0 0 80px -20px rgba(201,169,110,.4);
transform: rotateY(-4deg) rotateX(2deg);
transition: transform .6s cubic-bezier(.2,.8,.2,1);
}
.share-card:hover {
transform: rotateY(0deg) rotateX(0deg) scale(1.02);
}
.share-card img {
display: block;
width: 100%;
height: auto;
}
.share-card-frame {
position: absolute;
top: -14px; left: -14px; right: -14px; bottom: -14px;
border: 1px solid rgba(201,169,110,.25);
border-radius: 22px;
pointer-events: none;
z-index: -1;
}


/* ===========================
CONTATO
=========================== */
.contact-section {
padding: 110px 0 90px;
background: linear-gradient(180deg, var(--cream) 0%, var(--nude) 100%);
position: relative;
overflow: hidden;
}
.contact-section::before {
content: '';
position: absolute;
top: -80px; right: -80px;
width: 320px; height: 320px;
border-radius: 50%;
background: radial-gradient(circle, rgba(201,169,110,.18), transparent 70%);
pointer-events: none;
}
.contact-section::after {
content: '';
position: absolute;
bottom: -100px; left: -100px;
width: 380px; height: 380px;
border-radius: 50%;
background: radial-gradient(circle, rgba(107,78,61,.12), transparent 70%);
pointer-events: none;
}
.contact-header { text-align: center; margin-bottom: 60px; position: relative; z-index: 1; }
.contact-header .kicker {
display: inline-block;
font-size: .8rem;
letter-spacing: .3em;
text-transform: uppercase;
color: var(--gold-deep);
margin-bottom: 16px;
}
.contact-header h2 {
font-family: var(--font-display);
font-size: clamp(2.2rem, 4vw, 3rem);
font-weight: 500;
color: var(--ink);
line-height: 1.15;
margin-bottom: 18px;
}
.contact-header h2 .italic { font-style: italic; color: var(--gold-deep); }
.contact-header p {
font-size: 1.05rem;
color: var(--ink-soft);
max-width: 540px;
margin: 0 auto;
}

.contact-grid {
display: grid;
grid-template-columns: 1fr 1.3fr;
gap: 50px;
align-items: stretch;
position: relative;
z-index: 1;
}
@media (max-width: 920px) { .contact-grid { grid-template-columns: 1fr; gap: 30px; } }

.contact-info {
display: flex; flex-direction: column; gap: 22px;
}
.info-card {
background: rgba(255,255,255,.7);
backdrop-filter: blur(8px);
border: 1px solid rgba(201,169,110,.25);
border-radius: 18px;
padding: 28px 26px;
display: flex; gap: 18px; align-items: flex-start;
transition: transform .35s, box-shadow .35s, border-color .35s;
}
.info-card:hover {
transform: translateY(-4px);
box-shadow: 0 18px 40px -16px rgba(107,78,61,.28);
border-color: rgba(201,169,110,.55);
}
.info-card .info-icon {
flex-shrink: 0;
width: 48px; height: 48px;
border-radius: 50%;
background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
display: flex; align-items: center; justify-content: center;
color: white;
box-shadow: 0 6px 18px -6px rgba(201,169,110,.6);
}
.info-card .info-icon svg { width: 22px; height: 22px; }
.info-card .info-content { flex: 1; }
.info-card h4 {
font-size: .78rem;
letter-spacing: .2em;
text-transform: uppercase;
color: var(--gold-deep);
margin-bottom: 8px;
font-weight: 600;
}
.info-card p, .info-card a {
font-size: .98rem;
color: var(--ink);
line-height: 1.55;
word-break: break-word;
}
.info-card a { display: block; transition: color .3s; }
.info-card a:hover { color: var(--gold-deep); }
.info-card .info-meta {
display: block;
margin-top: 4px;
font-size: .82rem;
color: var(--ink-soft);
}
.info-card .btn-route {
display: inline-flex; align-items: center; gap: 8px;
margin-top: 12px;
padding: 10px 18px;
border-radius: 999px;
background: var(--ink);
color: white;
font-size: .82rem;
letter-spacing: .04em;
transition: background .3s, transform .3s;
}
.info-card .btn-route:hover { background: var(--gold-deep); transform: translateX(3px); }
.info-card .btn-route svg { width: 14px; height: 14px; }

/* Card de horário com tabela */
.hours-list {
margin-top: 8px;
display: grid;
grid-template-columns: 1fr auto;
gap: 6px 18px;
font-size: .92rem;
}
.hours-list .day { color: var(--ink-soft); }
.hours-list .time { color: var(--ink); font-weight: 500; font-variant-numeric: tabular-nums; }
.hours-list .day.today { color: var(--gold-deep); font-weight: 600; }
.hours-list .time.today { color: var(--gold-deep); font-weight: 600; }
.hours-list .closed { color: var(--ink-soft); font-style: italic; }

.hours-status {
display: inline-flex; align-items: center; gap: 8px;
margin-top: 14px;
padding: 8px 14px;
border-radius: 999px;
font-size: .82rem;
font-weight: 600;
letter-spacing: .03em;
}
.hours-status.open {
background: rgba(46, 160, 100, .12);
color: #1f7a4a;
border: 1px solid rgba(46, 160, 100, .25);
}
.hours-status.closed {
background: rgba(168, 100, 80, .1);
color: #8a4530;
border: 1px solid rgba(168, 100, 80, .25);
}
.hours-status .dot {
width: 8px; height: 8px;
border-radius: 50%;
background: currentColor;
box-shadow: 0 0 0 4px currentColor;
opacity: .25;
animation: pulse-dot 2s ease-in-out infinite;
}
.hours-status.open .dot { background: #2ea064; }
.hours-status.closed .dot { background: #b56a52; animation: none; }
@keyframes pulse-dot {
0%, 100% { box-shadow: 0 0 0 0 currentColor; opacity: .5; }
50% { box-shadow: 0 0 0 6px currentColor; opacity: 0; }
}

.contact-map {
border-radius: 22px;
overflow: hidden;
border: 1px solid rgba(201,169,110,.3);
box-shadow: 0 25px 50px -20px rgba(107,78,61,.3);
min-height: 460px;
background: var(--nude);
position: relative;
}
.contact-map iframe {
display: block;
width: 100%;
height: 100%;
min-height: 460px;
border: 0;
filter: saturate(.85) contrast(.95);
}

/* ===========================
FOOTER
=========================== */
footer {
background: var(--ink);
color: rgba(255,255,255,.75);
padding: 70px 0 40px;
}
.footer-grid {
display: grid;
grid-template-columns: 1.5fr 1fr 1fr;
gap: 40px;
margin-bottom: 50px;
}
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr; gap: 30px; text-align: center; } }
.footer-brand h3 { font-family: var(--font-display); font-style: italic; font-size: 1.8rem; color: var(--gold); margin-bottom: 8px; }
.footer-brand p { font-size: .9rem; max-width: 320px; }
@media (max-width: 760px) { .footer-brand p { margin: 0 auto; } }
.coren-badge {
display: inline-flex; align-items: center; gap: 10px;
margin-top: 18px;
padding: 10px 16px;
border-radius: 999px;
background: linear-gradient(135deg, rgba(201,169,110,.15), rgba(201,169,110,.05));
border: 1px solid rgba(201,169,110,.4);
color: var(--gold);
font-size: .85rem;
letter-spacing: .04em;
transition: all .35s ease;
cursor: default;
}
.coren-badge:hover {
background: linear-gradient(135deg, rgba(201,169,110,.25), rgba(201,169,110,.1));
border-color: rgba(201,169,110,.7);
transform: translateY(-1px);
box-shadow: 0 8px 20px -8px rgba(201,169,110,.4);
}
.coren-badge svg { width: 16px; height: 16px; flex-shrink: 0; }
.coren-badge strong { color: var(--gold); font-weight: 600; letter-spacing: .08em; }
.footer-col h5 {
font-family: var(--font-body);
font-size: .78rem;
text-transform: uppercase;
letter-spacing: .18em;
color: var(--gold);
margin-bottom: 16px;
}
.footer-col a { display: block; padding: 4px 0; font-size: .9rem; transition: color .3s; }
.footer-col a:hover { color: var(--gold); }
.socials { display: flex; gap: 14px; }
@media (max-width: 760px) { .socials { justify-content: center; } }
.socials a {
width: 42px; height: 42px;
border-radius: 50%;
background: rgba(255,255,255,.08);
border: 1px solid rgba(201, 169, 110, .3);
display: flex; align-items: center; justify-content: center;
transition: all .3s;
}
.socials a:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); }
.socials svg { width: 18px; height: 18px; }

.footer-contact {
margin-top: 18px;
display: flex; flex-direction: column; gap: 6px;
}
@media (max-width: 760px) { .footer-contact { align-items: center; } }
.footer-contact-line {
font-size: .9rem;
color: rgba(255,255,255,.7);
transition: color .3s;
letter-spacing: .02em;
}
.footer-contact-line:hover { color: var(--gold); }

.footer-bottom {
text-align: center;
padding-top: 30px;
border-top: 1px solid rgba(255,255,255,.08);
font-size: .82rem;
color: rgba(255,255,255,.5);
}
.footer-bottom .footer-legal {
margin-top: 6px;
font-size: .75rem;
color: rgba(255,255,255,.35);
letter-spacing: .03em;
}

/* ===========================
GALERIA MASONRY
=========================== */
.gallery-section { background: linear-gradient(180deg, var(--off-white) 0%, var(--nude-soft) 100%); }

.gallery-masonry {
columns: 3;
column-gap: 18px;
}
@media (max-width: 900px) { .gallery-masonry { columns: 2; } }
@media (max-width: 520px) { .gallery-masonry { columns: 1; } }

.gallery-item {
break-inside: avoid;
margin-bottom: 18px;
border-radius: var(--radius);
overflow: hidden;
position: relative;
cursor: pointer;
box-shadow: var(--shadow-soft);
transition: transform .5s var(--ease), box-shadow .5s var(--ease);
display: block;
}
.gallery-item:hover {
transform: translateY(-6px) scale(1.01);
box-shadow: 0 20px 50px -15px rgba(107, 78, 61, .35);
}

/* Placeholder visual: gradiente + ícone SVG */
.gallery-thumb {
width: 100%;
display: flex; align-items: center; justify-content: center;
position: relative;
background-size: cover;
background-position: center;
}
.gallery-thumb::before {
content: "";
position: absolute; inset: 0;
background: linear-gradient(160deg, rgba(250,245,236,.3) 0%, rgba(107,78,61,.15) 100%);
mix-blend-mode: overlay;
}
.gallery-thumb svg {
width: 42px; height: 42px;
stroke: rgba(255,255,255,.7);
fill: none;
stroke-width: 1.2;
position: relative; z-index: 1;
}

/* Alturas variadas para o efeito masonry */
.g-h1 { height: 280px; }
.g-h2 { height: 360px; }
.g-h3 { height: 220px; }
.g-h4 { height: 320px; }

/* Cada item ganha um gradiente único para dar variedade visual */
.g-var-1 { background: linear-gradient(135deg, #D9BF99 0%, #8B6914 100%); }
.g-var-2 { background: linear-gradient(135deg, #E8D4B8 0%, #6B4E3D 100%); }
.g-var-3 { background: linear-gradient(135deg, #C9A96E 0%, #4A352A 100%); }
.g-var-4 { background: linear-gradient(135deg, #F5EDE0 0%, #A8894F 100%); }
.g-var-5 { background: linear-gradient(135deg, #B8936A 0%, #2C1F16 100%); }
.g-var-6 { background: linear-gradient(135deg, #E0C9A3 0%, #8A6B56 100%); }

.gallery-overlay {
position: absolute;
inset: 0;
background: linear-gradient(0deg, rgba(44, 31, 22, .85) 0%, transparent 50%);
opacity: 0;
transition: opacity .4s var(--ease);
display: flex;
align-items: flex-end;
padding: 22px;
z-index: 2;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-caption {
color: white;
transform: translateY(10px);
transition: transform .4s var(--ease);
}
.gallery-item:hover .gallery-caption { transform: translateY(0); }
.gallery-caption h4 {
font-family: var(--font-display);
font-style: italic;
font-size: 1.3rem;
color: var(--gold);
margin-bottom: 4px;
}
.gallery-caption p { font-size: .82rem; opacity: .85; }

.gallery-zoom {
position: absolute;
top: 14px; right: 14px;
width: 36px; height: 36px;
border-radius: 50%;
background: rgba(255,255,255,.9);
backdrop-filter: blur(10px);
display: flex; align-items: center; justify-content: center;
opacity: 0;
transform: scale(.8);
transition: all .4s var(--ease);
z-index: 3;
}
.gallery-zoom svg { width: 16px; height: 16px; stroke: var(--ink); fill: none; stroke-width: 2; }
.gallery-item:hover .gallery-zoom { opacity: 1; transform: scale(1); }

/* Badge ANTES/DEPOIS sobre cards de comparação */
.gallery-badge {
position: absolute;
top: 14px;
left: 14px;
z-index: 3;
padding: 6px 12px;
background: rgba(255, 255, 255, .92);
color: var(--brown);
font-size: .65rem;
font-weight: 700;
letter-spacing: .15em;
border-radius: 999px;
border: 1px solid rgba(201, 169, 110, .4);
box-shadow: 0 4px 12px rgba(0, 0, 0, .12);
backdrop-filter: blur(8px);
-webkit-backdrop-filter: blur(8px);
}

/* ===========================
LIGHTBOX
=========================== */
.lightbox {
position: fixed;
inset: 0;
background: rgba(28, 19, 12, .94);
backdrop-filter: blur(16px);
-webkit-backdrop-filter: blur(16px);
z-index: 200;
display: flex;
align-items: center;
justify-content: center;
padding: 40px 20px;
opacity: 0;
visibility: hidden;
transition: opacity .4s var(--ease), visibility .4s;
}
.lightbox.open { opacity: 1; visibility: visible; }

.lightbox-inner {
position: relative;
width: 100%;
max-width: 800px;
transform: scale(.9);
transition: transform .4s var(--ease);
}
.lightbox.open .lightbox-inner { transform: scale(1); }

.lightbox-image {
width: 100%;
height: 80vh;
max-height: 80vh;
border-radius: var(--radius);
display: flex; align-items: center; justify-content: center;
background-size: contain;
background-repeat: no-repeat;
background-position: center;
background-color: rgba(20, 14, 8, .35);
box-shadow: 0 40px 80px -20px rgba(0,0,0,.6);
position: relative;
overflow: hidden;
}
.lightbox-image svg {
width: 80px; height: 80px;
stroke: rgba(255,255,255,.6);
fill: none;
stroke-width: 1;
}
/* Esconde o SVG placeholder quando há imagem real (classe explícita) */
.lightbox-image.has-image svg { display: none; }
.lightbox-image.has-image { background-color: rgba(0,0,0,.85); }

.lightbox-caption {
margin-top: 24px;
text-align: center;
color: white;
}
.lightbox-caption h4 {
font-family: var(--font-display);
font-style: italic;
font-size: 1.6rem;
color: var(--gold);
margin-bottom: 6px;
}
.lightbox-caption p { opacity: .75; font-size: .95rem; }
.lightbox-counter {
display: inline-block;
margin-top: 12px;
font-size: .75rem;
letter-spacing: .2em;
text-transform: uppercase;
color: var(--gold);
opacity: .6;
}

.lightbox-close {
position: absolute;
top: -50px;
right: 0;
width: 44px; height: 44px;
border-radius: 50%;
background: rgba(255,255,255,.12);
color: white;
border: 1px solid rgba(255,255,255,.2);
display: flex; align-items: center; justify-content: center;
font-size: 1.4rem;
line-height: 1;
transition: all .3s;
}
.lightbox-close:hover { background: var(--gold); border-color: var(--gold); transform: rotate(90deg); }

.lightbox-nav {
position: absolute;
top: 50%;
transform: translateY(-50%);
width: 52px; height: 52px;
border-radius: 50%;
background: rgba(255,255,255,.12);
backdrop-filter: blur(10px);
border: 1px solid rgba(255,255,255,.2);
color: white;
display: flex; align-items: center; justify-content: center;
font-size: 1.5rem;
transition: all .3s;
z-index: 4;
}
.lightbox-nav:hover { background: var(--gold); border-color: var(--gold); }
.lightbox-prev { left: -70px; }
.lightbox-next { right: -70px; }

@media (max-width: 900px) {
.lightbox-prev { left: 10px; }
.lightbox-next { right: 10px; }
.lightbox-close { top: -54px; right: 10px; }
.lightbox-image { height: 60vh; }
}

/* ===========================
TOP BANNER
=========================== */
.top-banner {
position: fixed;
top: 0; left: 0; right: 0;
z-index: 110;
background: linear-gradient(90deg, var(--gold-dark) 0%, var(--brown) 50%, var(--gold-dark) 100%);
background-size: 200% 100%;
color: white;
padding: 10px 50px 10px 20px;
font-size: .85rem;
letter-spacing: .04em;
text-align: center;
animation: bannerShine 6s linear infinite;
box-shadow: 0 2px 12px rgba(0,0,0,.1);
transition: transform .4s var(--ease);
}
.top-banner.hidden { transform: translateY(-100%); }

@keyframes bannerShine {
0% { background-position: 0% 50%; }
100% { background-position: 200% 50%; }
}

.top-banner-content {
display: inline-flex;
align-items: center;
gap: 10px;
flex-wrap: wrap;
justify-content: center;
}
.top-banner .pulse-dot {
width: 8px; height: 8px;
border-radius: 50%;
background: var(--gold);
box-shadow: 0 0 0 0 rgba(201, 169, 110, .8);
animation: dotPulse 1.6s infinite;
}
@keyframes dotPulse {
0% { box-shadow: 0 0 0 0 rgba(201, 169, 110, .9); }
100% { box-shadow: 0 0 0 10px rgba(201, 169, 110, 0); }
}
.top-banner strong {
font-family: var(--font-display);
font-style: italic;
font-weight: 500;
font-size: .95rem;
color: var(--gold);
}
.top-banner a.banner-cta {
color: white;
text-decoration: underline;
text-underline-offset: 3px;
font-weight: 500;
transition: color .3s;
}
.top-banner a.banner-cta:hover { color: var(--gold); }

.banner-close {
position: absolute;
top: 50%;
right: 14px;
transform: translateY(-50%);
width: 26px; height: 26px;
border-radius: 50%;
background: rgba(255,255,255,.1);
color: white;
display: flex; align-items: center; justify-content: center;
font-size: 1rem;
line-height: 1;
transition: background .3s;
}
.banner-close:hover { background: rgba(255,255,255,.25); }

/* Navbar deslocada quando o banner está ativo */
body.has-banner .navbar { top: 40px; }
body.has-banner .hero { padding-top: 180px; }

@media (max-width: 600px) {
.top-banner { font-size: .72rem; padding: 8px 40px 8px 14px; }
.top-banner strong { font-size: .82rem; }
body.has-banner .navbar { top: 56px; }
body.has-banner .hero { padding-top: 200px; }
}

/* ===========================
FLOATING WHATSAPP
=========================== */
.wa-float {
position: fixed;
bottom: 28px;
right: 28px;
width: 64px;
height: 64px;
border-radius: 50%;
background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
display: flex;
align-items: center;
justify-content: center;
box-shadow: 0 12px 30px -5px rgba(37, 211, 102, .55), 0 4px 12px rgba(0,0,0,.15);
z-index: 99;
transition: transform .3s var(--ease);
animation: waFadeIn .6s .8s both var(--ease);
}
.wa-float svg { width: 32px; height: 32px; fill: white; position: relative; z-index: 2; }
.wa-float:hover { transform: scale(1.1) rotate(-5deg); }

/* Anéis de pulso */
.wa-float::before,
.wa-float::after {
content: "";
position: absolute;
inset: 0;
border-radius: 50%;
border: 2px solid #25D366;
animation: waPulse 2.2s infinite var(--ease);
}
.wa-float::after { animation-delay: 1.1s; }

@keyframes waPulse {
0% { transform: scale(1); opacity: .7; }
100% { transform: scale(1.8); opacity: 0; }
}
@keyframes waFadeIn {
from { opacity: 0; transform: translateY(20px) scale(.8); }
to { opacity: 1; transform: translateY(0) scale(1); }
}

/* Tooltip lateral */
.wa-float .wa-tip {
position: absolute;
right: calc(100% + 14px);
top: 50%;
transform: translateY(-50%);
background: var(--ink);
color: white;
padding: 10px 16px;
border-radius: 8px;
font-size: .82rem;
font-weight: 500;
white-space: nowrap;
opacity: 0;
pointer-events: none;
transition: opacity .3s, transform .3s;
box-shadow: 0 8px 20px -5px rgba(0,0,0,.3);
}
.wa-float .wa-tip::after {
content: "";
position: absolute;
left: 100%;
top: 50%;
transform: translateY(-50%);
border: 6px solid transparent;
border-left-color: var(--ink);
}
.wa-float:hover .wa-tip {
opacity: 1;
transform: translateY(-50%) translateX(-4px);
}

@media (max-width: 600px) {
.wa-float { bottom: 20px; right: 20px; width: 56px; height: 56px; }
.wa-float svg { width: 28px; height: 28px; }
.wa-float .wa-tip { display: none; }
}

/* ===========================
REVEAL ANIMATIONS
=========================== */
.reveal { opacity: 0; transform: translateY(40px); transition: all .9s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }