/* ============================================================
   BARBEARIA GUSTAVO ALMEIDA — style.css
   Sistema Visual 05 — Elegância Noturna
   Paleta: #121414 (bg) | #e9c349 (gold) | #c8c6c5 (silver)
   Fontes: Libre Caslon Text (headlines) + Inter (body)
   ============================================================ */

/* ── 1. DESIGN TOKENS ── */
:root {
  --color-bg:            #121414;
  --color-bg-alt:        #1a1c1c;
  --color-bg-card:       #1e2020;
  --color-bg-higher:     #282a2b;
  --color-surface:       #0c0f0f;
  --color-gold:          #e9c349;
  --color-gold-dim:      #af8d11;
  --color-gold-glow:     rgba(233, 195, 73, 0.18);
  --color-gold-subtle:   rgba(233, 195, 73, 0.08);
  --color-silver:        #c8c6c5;
  --color-text:          #e2e2e2;
  --color-text-muted:    #c4c7c7;
  --color-text-dim:      #8e9192;
  --color-border:        rgba(68, 71, 72, 0.35);
  --color-border-gold:   rgba(233, 195, 73, 0.25);

  --font-headline:       'Libre Caslon Text', Georgia, serif;
  --font-body:           'Inter', system-ui, sans-serif;

  --section-padding:     clamp(72px, 8vw, 120px);
  --container-width:     1200px;
  --border-radius-card:  0;        /* Sistema 05 – bordas angulares */
  --transition:          0.3s ease;
  --transition-slow:     0.7s ease;

  --header-height:       72px;
}

/* ── 2. RESET + BOX MODEL ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ── 3. GRAIN OVERLAY ── */
.grain-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 256px;
}

/* ── 4. CONTAINER ── */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
  width: 100%;
}

/* ── 5. UTILITY CLASSES ── */
.text-gold { color: var(--color-gold); }
.kicker {
  display: block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-headline);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--color-text);
  margin-bottom: 0;
}
.section-title em { font-style: italic; color: var(--color-gold); }

.section-header {
  text-align: center;
  margin-bottom: clamp(40px, 6vw, 72px);
}

/* ── 6. BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 0;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
  cursor: pointer;
  white-space: nowrap;
}
.btn-lg { padding: 16px 36px; font-size: 13px; }
.btn-block { width: 100%; }

.btn-primary {
  background: var(--color-gold);
  color: #1a1200;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(233, 195, 73, 0.38);
  background: #f0ce5a;
}
.btn-primary:active { transform: scale(0.97); }

.btn-outline {
  border: 1px solid var(--color-gold);
  color: var(--color-gold);
  background: transparent;
}
.btn-outline:hover {
  background: var(--color-gold-subtle);
  transform: translateY(-2px);
}

/* ── 7. REVEAL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease-out, transform 0.75s ease-out;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── 8. HEADER ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-height);
  background: rgba(18, 20, 20, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--color-border);
  transition: background var(--transition), box-shadow var(--transition);
}
.site-header.scrolled {
  background: rgba(18, 20, 20, 0.97);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.brand-logo {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 50%;
  border: 1.5px solid var(--color-border-gold);
  filter: brightness(1.05);
}
.brand-name {
  font-family: var(--font-headline);
  font-size: 20px;
  font-weight: 400;
  color: var(--color-gold);
  letter-spacing: -0.01em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-link {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  transition: color var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-gold);
  transition: width var(--transition);
}
.nav-link:hover { color: var(--color-gold); }
.nav-link:hover::after { width: 100%; }

.nav-cta { margin-left: 8px; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  cursor: pointer;
}
.ham-line {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-gold);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.hamburger.open .ham-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open .ham-line:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open .ham-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Nav overlay (mobile) */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 98;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.nav-overlay.open {
  opacity: 1;
  pointer-events: all;
}

/* ── 9. HERO ── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: var(--header-height);
  overflow: hidden;
}

/* Collage background */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-collage {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}

.hero-collage-img {
  overflow: hidden;
}
.hero-collage-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.35) grayscale(0.2);
  transition: transform 8s ease;
  transform-origin: center;
}
.hero-collage-img:hover img { transform: scale(1.04); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(12, 15, 15, 0.97) 0%,
    rgba(12, 15, 15, 0.88) 40%,
    rgba(12, 15, 15, 0.55) 70%,
    rgba(12, 15, 15, 0.3) 100%
  );
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding-top: clamp(40px, 6vw, 80px);
  padding-bottom: clamp(40px, 6vw, 80px);
}

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

.hero-h1 {
  font-family: var(--font-headline);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--color-text);
  margin-bottom: 20px;
  margin-top: 8px;
}
.hero-h1 em { font-style: italic; }

.hero-sub {
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  color: var(--color-text-muted);
  margin-bottom: 36px;
  max-width: 500px;
}

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

/* Floating logo panel */
.hero-logo-float {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  opacity: 0.55;
  filter: drop-shadow(0 0 40px rgba(233, 195, 73, 0.15));
  mix-blend-mode: screen;
}
.hero-logo-img {
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid var(--color-border-gold);
  filter: grayscale(0.3) contrast(1.2);
}
.hero-stars {
  display: flex;
  align-items: center;
  gap: 4px;
}
.star { color: var(--color-gold); font-size: 14px; }
.hero-rating-text {
  font-size: 11px;
  color: var(--color-text-muted);
  letter-spacing: 0.05em;
  margin-left: 6px;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--color-gold), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.8); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ── 10. HIGHLIGHTS ── */
.highlights-section {
  background: var(--color-surface);
  padding: clamp(48px, 6vw, 80px) 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(20px, 3vw, 36px);
}

.highlight-card {
  padding: 36px;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.highlight-card:hover {
  border-color: var(--color-border-gold);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(233, 195, 73, 0.08);
}

.highlight-icon {
  width: 48px;
  height: 48px;
  background: var(--color-gold-subtle);
  border: 1px solid var(--color-border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--color-gold);
  flex-shrink: 0;
}

.highlight-title {
  font-family: var(--font-headline);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 400;
  color: var(--color-text);
  margin-bottom: 10px;
}
.highlight-desc {
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.65;
}

/* ── 11. SERVICES / BENTO GRID ── */
.services-section {
  background: var(--color-bg);
  padding: var(--section-padding) 0;
  position: relative;
  overflow: hidden;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: clamp(10px, 1.5vw, 16px);
  min-height: 580px;
}

/* Large card (2 cols, 2 rows) */
.bento-large {
  grid-column: span 2;
  grid-row: span 2;
}
/* Medium card (2 cols) */
.bento-medium {
  grid-column: span 2;
}
/* Small card (1 col) */
.bento-small {
  grid-column: span 1;
}

.bento-card {
  position: relative;
  overflow: hidden;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  transition: border-color var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
  min-height: 200px;
}
.bento-card:hover {
  border-color: var(--color-border-gold);
  box-shadow: 0 8px 32px rgba(233, 195, 73, 0.1);
}

.bento-img-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.bento-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
  transition: transform 0.7s ease, opacity var(--transition);
}
.bento-card:hover .bento-img {
  transform: scale(1.05);
  opacity: 0.6;
}
.bento-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12, 15, 15, 0.95) 0%, transparent 60%);
}

.bento-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: clamp(16px, 3vw, 28px);
}
.bento-info-full {
  position: relative;
  padding: clamp(20px, 3vw, 32px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
}

.bento-title {
  font-family: var(--font-headline);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 400;
  color: var(--color-gold);
  margin-bottom: 6px;
}
.bento-title-dark { color: #1a1200; }

.bento-desc {
  font-size: 14px;
  color: var(--color-text);
  margin-bottom: 10px;
  line-height: 1.5;
}
.bento-desc.small { font-size: 12px; letter-spacing: 0.03em; font-weight: 500; text-transform: uppercase; }
.dark-text { color: rgba(26, 18, 0, 0.75); }

.bento-price {
  font-family: var(--font-headline);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: var(--color-gold);
  font-weight: 700;
}
.bento-price-dark { color: #1a1200; }

.bento-dark { background: var(--color-bg-higher); }
.bento-gold { background: var(--color-gold); }

/* ── 12. ABOUT ── */
.about-section {
  background: var(--color-bg-alt);
  padding: var(--section-padding) 0;
  position: relative;
  overflow: hidden;
}
.about-section::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--color-gold-glow) 0%, transparent 70%);
  pointer-events: none;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
}

.about-img-col { position: relative; }

.about-img-frame {
  position: relative;
}
.about-img-frame::before {
  content: '';
  position: absolute;
  top: -8px;
  left: -8px;
  right: 8px;
  bottom: 8px;
  border: 1px solid var(--color-border-gold);
  pointer-events: none;
  z-index: 1;
}

.about-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 2;
  filter: brightness(0.9) contrast(1.05);
}

.about-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--color-bg);
  border: 1px solid var(--color-border-gold);
  padding: 20px 24px;
  z-index: 3;
  text-align: center;
}
.badge-number {
  font-family: var(--font-headline);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-gold);
  line-height: 1;
}
.badge-label {
  font-size: 12px;
  color: var(--color-text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 4px;
}

.about-title { margin-bottom: 24px; }

.about-p {
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  color: var(--color-text-muted);
  margin-bottom: 18px;
  line-height: 1.75;
}

.about-stats {
  display: flex;
  gap: 28px;
  align-items: center;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--color-border);
  flex-wrap: wrap;
}
.about-stat { text-align: center; }
.stat-number {
  font-family: var(--font-headline);
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 700;
  color: var(--color-gold);
}
.stat-label {
  font-size: 12px;
  color: var(--color-text-dim);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 2px;
}
.about-divider {
  width: 1px;
  height: 40px;
  background: var(--color-border);
  flex-shrink: 0;
}

/* ── 13. GALLERY ── */
.gallery-section {
  background: var(--color-bg);
  padding: var(--section-padding) 0;
  overflow: hidden;
}

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

.gallery-wide {
  grid-column: span 2;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform 0.7s ease, filter 0.4s ease;
  filter: brightness(0.85) grayscale(0.1);
  display: block;
}
.gallery-wide img {
  height: clamp(240px, 35vw, 420px);
}
.gallery-item:hover img {
  transform: scale(1.04);
  filter: brightness(1) grayscale(0);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12, 15, 15, 0.85) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 20px 24px;
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.gallery-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.gallery-cta-text {
  font-size: 15px;
  color: var(--color-text-muted);
}

/* ── 14. EXPERIENCE / STEPS ── */
.experience-section {
  background: var(--color-bg-alt);
  padding: var(--section-padding) 0;
  overflow: hidden;
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 20px;
  align-items: start;
  margin-top: 8px;
}

.step-connector {
  display: none; /* Oculto por padrão — ativado apenas em desktop via grid de 5 cols */
  align-items: center;
  padding-top: 60px;
  align-self: flex-start;
}
.step-connector::after {
  content: '';
  display: block;
  width: 60px;
  height: 1px;
  background: linear-gradient(to right, var(--color-gold-dim), transparent);
}

.step-item {
  position: relative;
  padding-top: 24px;
}

.ghost-number {
  position: absolute;
  top: -12px;
  left: -8px;
  font-family: var(--font-headline);
  font-size: clamp(5rem, 10vw, 10rem);
  line-height: 1;
  color: var(--color-gold);
  opacity: 0.06;
  user-select: none;
  pointer-events: none;
  z-index: 0;
}

.step-content {
  position: relative;
  z-index: 1;
}
.step-title {
  font-family: var(--font-headline);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 400;
  color: var(--color-gold);
  margin-bottom: 12px;
}
.step-desc {
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.65;
}

/* ── 15. REVIEW ── */
.review-section {
  background: var(--color-surface);
  padding: clamp(56px, 6vw, 88px) 0;
  overflow: hidden;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  position: relative;
}
.review-section::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-headline);
  font-size: 200px;
  color: var(--color-gold);
  opacity: 0.04;
  line-height: 1;
  pointer-events: none;
}

.review-wrapper {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.review-badge-row {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 20px;
}
.review-star {
  font-size: 22px;
  color: var(--color-gold);
}

.review-quote {
  font-style: normal;
  margin-bottom: 20px;
}
.review-quote p {
  font-family: var(--font-headline);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 400;
  font-style: italic;
  color: var(--color-text);
  line-height: 1.5;
  margin-bottom: 12px;
}
.review-author {
  font-size: 14px;
  color: var(--color-text-dim);
  letter-spacing: 0.05em;
}
.review-meta {
  font-size: 13px;
  color: var(--color-text-dim);
}
.review-meta strong { color: var(--color-gold); }

/* ── 16. FAQ ── */
.faq-section {
  background: var(--color-surface);
  padding: var(--section-padding) 0;
  overflow: hidden;
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.faq-item {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  transition: border-color var(--transition);
}
.faq-item.open { border-color: var(--color-border-gold); }

.faq-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  text-align: left;
  gap: 16px;
  background: transparent;
  color: var(--color-text);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
}
.faq-btn:hover { color: var(--color-gold); }
.faq-item.open .faq-btn { color: var(--color-gold); }

.faq-icon {
  flex-shrink: 0;
  color: var(--color-gold);
  transition: transform 0.35s ease;
}
.faq-item.open .faq-icon { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 24px;
}
.faq-item.open .faq-answer {
  max-height: 400px;
  padding: 0 24px 20px;
}
.faq-answer p {
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ── 17. CONTACT ── */
.contact-section {
  background: var(--color-bg);
  padding: var(--section-padding) 0;
  overflow: hidden;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 72px);
  align-items: stretch;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-icon {
  width: 40px;
  height: 40px;
  background: var(--color-gold-subtle);
  border: 1px solid var(--color-border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-gold);
}
.contact-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 6px;
}
.contact-value {
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.65;
}
.contact-phone {
  font-family: var(--font-headline);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  color: var(--color-text);
  text-decoration: underline;
  text-decoration-color: rgba(233, 195, 73, 0.3);
  text-underline-offset: 6px;
  transition: color var(--transition);
}
.contact-phone:hover { color: var(--color-gold); }

.contact-cta { margin-top: 8px; }

.contact-map {
  border: 1px solid var(--color-border);
  overflow: hidden;
  min-height: 380px;
  background: var(--color-bg-card);
  filter: grayscale(0.6) invert(0.85) contrast(0.85);
  transition: filter var(--transition);
}
.contact-map:hover { filter: grayscale(0.2) invert(0.85) contrast(0.9); }
.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  min-height: 380px;
}

/* ── 18. FOOTER ── */
.site-footer {
  background: var(--color-surface);
  border-top: 1px solid rgba(233, 195, 73, 0.15);
  padding: 48px 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.footer-logo {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid var(--color-border-gold);
}
.footer-name {
  font-family: var(--font-headline);
  font-size: 1.3rem;
  color: var(--color-gold);
}
.footer-sub {
  font-size: 12px;
  color: var(--color-text-dim);
  margin-top: 2px;
}

.footer-links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-link {
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-text-dim);
  transition: color var(--transition);
}
.footer-link:hover { color: var(--color-gold); }

.footer-copy {
  font-size: 12px;
  color: var(--color-text-dim);
  opacity: 0.6;
  max-width: 600px;
}

/* ── 19. WHATSAPP FLOAT ── */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.06);
  box-shadow: 0 10px 32px rgba(37, 211, 102, 0.55);
}
.whatsapp-float svg { fill: white; width: 28px; height: 28px; }

/* ── 20. BACK TO TOP ── */
.back-to-top {
  position: fixed;
  bottom: 96px;
  right: 30px;
  width: 42px;
  height: 42px;
  background: var(--color-bg-higher);
  border: 1px solid var(--color-border-gold);
  color: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition);
  cursor: pointer;
}
.back-to-top.visible {
  opacity: 1;
  pointer-events: all;
}
.back-to-top:hover { transform: translateY(-2px); }

/* ── 21. RESPONSIVE ── */
@media (max-width: 1024px) {
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    min-height: unset;
  }
  .bento-large { grid-column: span 2; grid-row: span 1; }
  .bento-medium { grid-column: span 2; }
  .bento-small { grid-column: span 1; }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  /* step-connector já é display:none por padrão — não precisa resetar */
}

@media (min-width: 1025px) {
  /* Ativar connectors apenas em desktop onde o grid de 5 cols funciona */
  .step-connector { display: flex; }
}

@media (max-width: 768px) {
  :root { --header-height: 64px; }

  /* Nav mobile */
  .hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(300px, 80vw);
    background: var(--color-bg-alt);
    border-left: 1px solid var(--color-border);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: calc(var(--header-height) + 24px) 32px 40px;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    z-index: 99;
    overflow-y: auto;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links li { width: 100%; }
  .nav-link { display: block; padding: 14px 0; font-size: 15px; border-bottom: 1px solid var(--color-border); }
  .nav-cta { margin: 20px 0 0; width: 100%; text-align: center; justify-content: center; }

  /* Hero */
  .hero-content { flex-direction: column; justify-content: center; }
  .hero-logo-float { display: none; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; }

  /* Gallery */
  .gallery-wide { grid-column: span 2; }
  .gallery-item img { height: 220px; }
  .gallery-wide img { height: clamp(200px, 40vw, 320px); }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-badge { bottom: -16px; right: 0; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; }
  .contact-map { min-height: 260px; }
  .contact-map iframe { min-height: 260px; }

  /* Bento */
  .bento-grid {
    grid-template-columns: 1fr;
    min-height: unset;
  }
  .bento-large, .bento-medium, .bento-small { grid-column: span 1; grid-row: span 1; }
  .bento-card { min-height: 220px; }

  /* Steps */
  .steps-grid { grid-template-columns: 1fr; }

  /* About frame offset */
  .about-img-frame::before { display: none; }
}

@media (max-width: 480px) {
  .highlights-grid { grid-template-columns: 1fr; }
  .about-stats { flex-direction: column; gap: 20px; }
  .about-divider { display: none; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-wide { grid-column: span 1; }
  .footer-brand { flex-direction: column; }
  .hero-h1 { font-size: clamp(1.9rem, 7vw, 2.5rem); }
}

/* ── 22. SECTION UTILITY ── */
.section { position: relative; overflow: hidden; }
