/* ================================================
   FINKLER ADVOCACIA — DESIGN SYSTEM
   Paleta: Vinho #6B0F1A · Branco #FFFFFF · Dourado #D8B56A
   Estilo: Luxury Legal
================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Outfit:wght@300;400;500;600;700&display=swap');

/* ── Tokens ────────────────────────────────── */
:root {
  --wine:        #6B0F1A;
  --wine-dark:   #4A0A12;
  --wine-light:  #8B1525;
  --gold:        #D8B56A;
  --gold-dark:   #C09A4A;
  --gold-light:  #EDD28E;
  --white:       #FFFFFF;
  --off-white:   #FFFFFF;
  --light-bg:    #FFFFFF;
  --dark-text:   #1A0508;
  --mid-gray:    #7A6B6E;
  --border:      rgba(107, 15, 26, 0.12);

  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-sans:   'Outfit', system-ui, sans-serif;

  --radius-sm:   8px;
  --radius-md:   16px;
  --radius-lg:   24px;
  --radius-xl:   40px;

  --shadow-sm:   0 2px 12px rgba(107,15,26,0.08);
  --shadow-md:   0 8px 32px rgba(107,15,26,0.12);
  --shadow-lg:   0 20px 60px rgba(107,15,26,0.18);
}

/* ── Reset ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  background: var(--white);
  color: var(--dark-text);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ── Navigation ─────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: var(--shadow-md); }
.nav-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--wine);
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo .logo-mark {
  width: 40px; height: 40px;
  background: var(--wine);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}
.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}
.nav-links a {
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--mid-gray);
  transition: color 0.25s;
}
.nav-links a:hover { color: var(--wine); }
.nav-cta {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 10px 22px;
  border-radius: 100px;
  background: linear-gradient(105deg, var(--gold-dark) 0%, var(--gold-light) 50%, var(--gold-dark) 100%);
  color: var(--white);
  border: none;
  transition: all 0.3s;
  cursor: pointer;
}
.nav-cta:hover {
  opacity: 0.85;
  color: var(--white);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--wine);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ── Hero ───────────────────────────────────── */
#home {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 150px 24px 40px;
  position: relative;
  overflow: hidden;
  text-align: left;
  background-image: url('../img/backg01.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 768px) {
  #home {
    padding: 280px 24px 40px;
    background-image: url('../img/backg01mobile.webp');
  }
}
.hero-bg {
  display: none;
}
.hero-mobile-persona {
  display: none;
}
.hero-cta-group {
  margin-bottom: 56px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

@media (max-width: 768px) {
  #home {
    padding-bottom: 0;
  }
  .hero-cta-group {
    align-items: center;
    margin-bottom: 0;
  }
  .hero-mobile-persona {
    display: block;
    width: 90%;
    margin: 20px auto 0;
    max-width: 320px;
    height: auto;
    z-index: 5;
  }
}
.hero-ornament {
  position: absolute;
  top: 80px; right: -100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  border: 1px solid rgba(216,181,106,0.18);
  pointer-events: none;
  z-index: 0;
}
.hero-ornament::after {
  content: '';
  position: absolute;
  inset: 40px;
  border-radius: 50%;
  border: 1px solid rgba(107,15,26,0.08);
}
.hero-content {
  position: relative;
  z-index: 10;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
/* Limita o bloco de texto a 50% do container */
.hero-content > * {
  max-width: 85%;
}
@media (max-width: 768px) {
  .hero-content > * {
    max-width: 100%;
  }
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border: 1px solid var(--gold);
  border-radius: 100px;
  background: rgba(216,181,106,0.08);
  margin-bottom: 32px;
}
.hero-badge span {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--gold-dark);
}
.hero-badge .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--wine);
}
h1#hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--dark-text);
  max-width: 480px;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}
h1#hero-title em {
  font-style: italic;
  color: var(--wine);
}
.hero-sub {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  font-weight: 300;
  color: var(--mid-gray);
  max-width: 500px;
  line-height: 1.75;
  margin-bottom: 48px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 64px;
}

/* Circular badge hero */
.badge-circular {
  width: 100px; height: 100px;
  position: relative;
  flex-shrink: 0;
}
.badge-logo {
  position: absolute;
  inset: 50%;
  transform: translate(-50%, -50%);
  width: 44px; height: 44px;
  background: var(--wine);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
}

.tabs-container {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  padding: 12px 20px 12px 12px;
  border-radius: 100px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  margin-bottom: 64px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Stats Strip */
.hero-stats {
  display: flex;
  gap: 48px;
  border-top: 1px solid var(--border);
  padding-top: 40px;
  flex-wrap: wrap;
  justify-content: center;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.stat-num {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--wine);
  line-height: 1;
}
.stat-label {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--mid-gray);
}

/* ── Buttons ────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 100px;
  background: linear-gradient(105deg, var(--gold-dark) 0%, var(--gold-light) 50%, var(--gold-dark) 100%);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  border: none;
  transition: all 0.3s;
  cursor: pointer;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .btn-primary {
    white-space: normal;
    padding: 12px 24px;
    font-size: 0.75rem;
    text-align: center;
    max-width: 100%;
    line-height: 1.4;
  }
}
.btn-primary:hover {
  opacity: 0.85;
  color: var(--white);
}
.btn-primary .btn-icon { font-size: 1rem; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 100px;
  background: transparent;
  color: var(--wine);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  border: 2px solid var(--wine);
  transition: all 0.3s;
  cursor: pointer;
  white-space: nowrap;
}
.btn-outline:hover {
  background: var(--wine);
  color: var(--gold);
}

.btn-premium-outer {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 100px;
  background: linear-gradient(105deg, var(--gold-dark) 0%, var(--gold-light) 50%, var(--gold-dark) 100%);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  border: none;
  white-space: nowrap;
  transition: opacity 0.3s;
  cursor: pointer;
}
.btn-premium-outer:hover { opacity: 0.85; }
/* .btn-premium-inner is kept for backwards compat but inherits from parent */
.btn-premium-inner {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  white-space: nowrap;
  color: var(--white);
}

/* Tab Nav Btn */
.tab-nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  transition: all 0.3s;
  color: var(--mid-gray);
  border: 1px solid transparent;
}
.tab-nav-btn:hover {
  background: var(--wine);
  color: var(--gold);
}

/* ── Section Commons ─────────────────────────── */
.section-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--gold-dark);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400;
  color: var(--dark-text);
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.section-title.light { color: var(--white); }
.section-header { text-align: center; margin-bottom: 64px; }
.section-header .section-title { margin-top: 8px; }

/* FAQ section-label override for white bg */
#faq .section-label { color: var(--gold-dark); }
#faq .section-title { color: var(--dark-text); }

/* ── Serviços ───────────────────────────────── */
#servicos {
  padding: 96px 24px;
  background: var(--white);
}
.servicos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
  position: relative;
  overflow: hidden;
  cursor: default;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--wine), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: rgba(107,15,26,0.25);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 56px; height: 56px;
  border-radius: var(--radius-sm);
  background: rgba(107,15,26,0.06);
  display: flex; align-items: center; justify-content: center;
  color: var(--wine);
  font-size: 1.6rem;
  transition: all 0.35s;
  flex-shrink: 0;
}
.service-card:hover .service-icon {
  background: var(--wine);
  color: var(--gold);
}
.service-card h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--dark-text);
  line-height: 1.2;
}
.service-card p {
  font-size: 0.875rem;
  color: var(--mid-gray);
  line-height: 1.75;
  font-weight: 300;
}

/* ── Sobre ──────────────────────────────────── */
#sobre {
  padding: 96px 24px;
  background: var(--wine);
  position: relative;
  overflow: hidden;
}
#sobre::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  border: 1px solid rgba(216,181,106,0.15);
  pointer-events: none;
}
.sobre-grid {
  max-width: 1050px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.sobre-image-wrap {
  position: relative;
}
.sobre-img-frame {
  aspect-ratio: 4/5;
  border-radius: 80px 20px 80px 20px;
  overflow: hidden;
  border: 4px solid rgba(216,181,106,0.3);
  position: relative;
  background: rgba(216,181,106,0.1);
  display: flex; align-items: center; justify-content: center;
}
/* Placeholder elegant when no image */
.sobre-img-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: rgba(216,181,106,0.6);
  font-family: var(--font-serif);
  font-size: 4rem;
}
.sobre-img-placeholder p {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(216,181,106,0.4);
}
.sobre-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  box-shadow: var(--shadow-lg);
  border-left: 4px solid var(--gold);
  z-index: 10;
}
.sobre-badge .big-num {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--wine);
  line-height: 1;
}
.sobre-badge p {
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--mid-gray);
  margin-top: 4px;
}
.sobre-text .section-label { color: var(--gold); }
.sobre-text .section-title { color: var(--white); margin-bottom: 32px; }
.sobre-text .text-body {
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  color: rgba(255,255,255,0.75);
  line-height: 1.85;
  font-weight: 300;
}
.sobre-text .text-body p + p { margin-top: 20px; }
.sobre-text .text-body strong { color: var(--white); font-weight: 600; }

/* ── Diferenciais ───────────────────────────── */
#diferenciais {
  padding: 96px 24px;
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.dif-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}
.dif-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s;
}
.dif-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.dif-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-sm);
  background: rgba(107,15,26,0.06);
  display: flex; align-items: center; justify-content: center;
  color: var(--wine);
  font-size: 1.5rem;
}
.dif-card h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--dark-text);
}
.dif-card p {
  font-size: 0.85rem;
  color: var(--mid-gray);
  line-height: 1.7;
  font-weight: 300;
}

/* ── Avaliações ─────────────────────────────── */
#avaliacoes {
  padding: 96px 24px;
  background: var(--white);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: box-shadow 0.3s;
}
.review-card:hover { box-shadow: var(--shadow-md); }
.review-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 16px; }
.reviewer-info { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--light-bg);
  color: var(--wine);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  flex-shrink: 0;
  border: 2px solid var(--border);
}
.reviewer-name { font-size: 0.875rem; font-weight: 700; color: var(--dark-text); }
.reviewer-date { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--mid-gray); }
.star-rating { display: flex; gap: 3px; color: var(--gold); margin-bottom: 14px; }
.review-text { font-size: 0.82rem; color: var(--mid-gray); line-height: 1.75; font-weight: 300; }
.google-badge-section {
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.trust-score {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark-text);
}
.trust-label {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--mid-gray);
}

/* ── CTA WhatsApp Block ─────────────────────── */
#cta {
  padding: 96px 24px;
  background: linear-gradient(135deg, var(--wine-dark) 0%, var(--wine) 60%, var(--wine-light) 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}
#cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23D8B56A' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.4;
}
.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.cta-label {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--gold);
  border: 1px solid rgba(216,181,106,0.35);
  padding: 6px 16px;
  border-radius: 100px;
}
.cta-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.15;
}
.cta-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  font-weight: 300;
  line-height: 1.65;
}
.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 40px;
  border-radius: 100px;
  background: linear-gradient(105deg, var(--gold-dark) 0%, var(--gold-light) 50%, var(--gold-dark) 100%);
  color: var(--wine);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  border: none;
  cursor: pointer;
  box-shadow: 0 0 30px rgba(216,181,106,0.3);
  transition: all 0.3s;
}
.btn-wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 45px rgba(216,181,106,0.5);
}
.btn-wa svg { width: 20px; height: 20px; }

/* ── FAQ ────────────────────────────────────── */
#faq {
  padding: 96px 24px;
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  cursor: pointer;
  gap: 16px;
  transition: color 0.2s;
}
.faq-question:hover .faq-q-text { color: var(--wine); }
.faq-q-text {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--dark-text);
  transition: color 0.2s;
}
.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--mid-gray);
  font-size: 0.75rem;
  flex-shrink: 0;
  transition: all 0.3s;
}
.faq-item.open .faq-icon {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--wine);
  transform: rotate(45deg);
}
.faq-answer {
  font-size: 0.875rem;
  color: var(--mid-gray);
  line-height: 1.8;
  font-weight: 300;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1), padding 0.4s;
}
.faq-item.open .faq-answer {
  max-height: 300px;
  padding-bottom: 24px;
}
.faq-cta-box {
  margin-top: 56px;
  background: rgba(107,15,26,0.04);
  border-radius: var(--radius-xl);
  padding: 56px 48px;
  text-align: center;
  border: 1px solid var(--border);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.faq-cta-box h3 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--wine);
  margin-bottom: 14px;
}
.faq-cta-box p {
  font-size: 0.9rem;
  color: var(--mid-gray);
  margin-bottom: 32px;
  line-height: 1.75;
}

/* ── Localização ────────────────────────────── */
#localizacao {
  padding: 96px 24px;
  background: var(--white);
}
.loc-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 48px;
  align-items: center;
}
.loc-info { display: flex; flex-direction: column; gap: 32px; }
.loc-contact-item { display: flex; align-items: flex-start; gap: 16px; }
.loc-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(107,15,26,0.06);
  display: flex; align-items: center; justify-content: center;
  color: var(--wine);
  font-size: 1rem;
  flex-shrink: 0;
}
.loc-contact-item span { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--gold-dark); }
.loc-contact-item p, .loc-contact-item a {
  font-size: 0.9rem;
  color: var(--mid-gray);
  line-height: 1.6;
  font-weight: 300;
  transition: color 0.2s;
}
.loc-contact-item a:hover { color: var(--wine); }
.loc-map {
  border-radius: var(--radius-xl);
  overflow: hidden;
  height: 420px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}
.loc-map iframe { width: 100%; height: 100%; border: 0; }

/* ── Footer ─────────────────────────────────── */
footer {
  background: var(--wine);
  padding: 80px 24px 40px;
}
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1.5fr;
  gap: 72px;
  padding-bottom: 56px;
}
.footer-logo-mark {
  display: block;
  margin-bottom: 24px;
}
.footer-logo-mark .logo-circle {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--wine);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.footer-logo-mark .brand-name {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
}
.footer-brand p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  font-weight: 300;
}
.footer-cols { display: flex; gap: 48px; flex-wrap: wrap; }
.footer-col { display: flex; flex-direction: column; gap: 14px; }
.footer-col-title {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--gold);
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(216,181,106,0.25);
  margin-bottom: 6px;
}
.footer-col a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  font-weight: 300;
  transition: color 0.25s, padding-left 0.25s;
  line-height: 1.5;
  text-decoration: none;
}
.footer-col a:hover {
  color: var(--gold-light);
  padding-left: 6px;
}

/* Contact links with icons */
.footer-contact-link {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-contact-link svg {
  color: var(--gold);
  flex-shrink: 0;
  opacity: 0.75;
}

/* Gold divider */
.footer-gold-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), rgba(216,181,106,0.3), transparent);
  margin-bottom: 32px;
}
.footer-address-strip {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}
.footer-address-strip svg { color: var(--gold); opacity: 0.6; flex-shrink: 0; }
.footer-address-strip p { font-size: 0.8rem; color: rgba(255,255,255,0.4); font-weight: 300; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 20px;
}
.footer-bottom p { font-size: 0.75rem; color: rgba(255,255,255,0.3); }
.footer-compliance {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  line-height: 2;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 32px;
  padding: 0 20px;
}
.footer-powered {
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0.55;
  transition: opacity 0.3s;
}
.footer-powered:hover { opacity: 1; }
.footer-powered span { font-size: 0.62rem; text-transform: uppercase; letter-spacing: 0.15em; color: rgba(255,255,255,0.5); }

@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 48px; }
}
@media (max-width: 600px) {
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
}

/* ── WhatsApp Float Widget ──────────────────── */
#wa-widget {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: opacity 0.6s, transform 0.6s;
}
#wa-widget.visible {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.wa-balloon {
  width: 288px;
  background: var(--white);
  border-radius: 20px;
  padding: 16px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  margin-bottom: 12px;

  /* hidden by default, shown on hover */
  transform-origin: bottom right;
  transform: scale(0.85) translateY(8px);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  position: relative;
}
.wa-balloon::after {
  content: '';
  position: absolute;
  bottom: -8px; right: 22px;
  width: 16px; height: 16px;
  background: var(--white);
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transform: rotate(45deg);
}
#wa-widget:hover .wa-balloon,
#wa-widget.balloon-open .wa-balloon {
  transform: scale(1) translateY(0);
  opacity: 1;
  pointer-events: all;
}
.wa-profile {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.wa-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--wine);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  border: 2px solid rgba(216,181,106,0.4);
  flex-shrink: 0;
}
.wa-profile-info .wa-name { font-size: 0.8rem; font-weight: 700; color: var(--dark-text); }
.wa-profile-info .wa-status {
  display: flex; align-items: center; gap: 5px;
  font-size: 0.65rem; font-weight: 600; color: #25D366;
}
.wa-online-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #25D366;
  animation: pulse-green 1.8s infinite;
}
@keyframes pulse-green {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.75); }
}
.wa-message {
  font-size: 0.78rem;
  color: var(--mid-gray);
  line-height: 1.65;
  background: #F0F2F5;
  padding: 10px 14px;
  border-radius: 0 12px 12px 12px;
  font-weight: 300;
}
.wa-btn-float {
  width: 58px; height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 24px rgba(37,211,102,0.4);
  transition: all 0.3s;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  z-index: 10;
}
.wa-btn-float:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 15px 40px rgba(37,211,102,0.6);
}
.wa-btn-float svg { width: 28px; height: 28px; fill: var(--white); }

/* ── Scroll arrow ───────────────────────────── */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(107,15,26,0.4);
  animation: bounce-arrow 2s infinite;
}
.scroll-indicator svg { width: 20px; height: 20px; }
@keyframes bounce-arrow {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ── Mobile Menu ────────────────────────────── */
.mobile-menu {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 72px; left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 24px;
  gap: 20px;
  box-shadow: var(--shadow-md);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--mid-gray);
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--wine); }

/* ── Responsive ─────────────────────────────── */
@media (max-width: 900px) {
  .nav-logo img { height: 30px !important; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .hamburger { 
    display: flex; 
    border: none;
    outline: none;
    padding: 10px;
  }
  .hamburger span {
    background: linear-gradient(105deg, var(--gold-dark) 0%, var(--gold-light) 50%, var(--gold-dark) 100%);
  }

  .sobre-grid { grid-template-columns: 1fr; gap: 48px; }
  .sobre-image-wrap { max-width: 380px; margin: 0 auto; }
  .sobre-badge { bottom: -16px; right: 0; }

  .loc-grid { grid-template-columns: 1fr; }
  .loc-map { height: 300px; }

  .footer-top { flex-direction: column; }
  .footer-cols { flex-direction: column; gap: 32px; }
}

@media (max-width: 640px) {
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-stats { gap: 28px; }
  .faq-cta-box { padding: 36px 24px; }
  .tabs-container { padding: 10px 16px; }
  #cta { padding: 72px 20px; }
}
