/* =============================
   RESET & BASE
   ============================= */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --gold:       #C9A84C;
  --gold-light: #E2C97E;
  --gold-dark:  #A07830;
  --wine:       #5C1A2E;
  --wine-dark:  #3B0D1C;
  --wine-deep:  #26091A;
  --cream:      #F9F5EE;
  --cream-dark: #EDE7DC;
  --text:       #2A1A12;
  --text-muted: #7A6A62;
  --white:      #FFFFFF;
  --shadow-sm:  0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:  0 6px 24px rgba(0,0,0,0.12);
  --shadow-lg:  0 16px 48px rgba(0,0,0,0.16);
  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  24px;
  --radius-xl:  32px;
  --transition: 0.3s ease;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream-dark); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

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

/* =============================
   TYPOGRAPHY
   ============================= */
.section-tag {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section-tag--light {
  color: var(--gold-light);
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--wine);
  margin-bottom: 1rem;
}

.section-title--light {
  color: var(--cream);
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.section-subtitle--light {
  color: rgba(249,245,238,0.75);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

/* =============================
   BUTTONS
   ============================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.8rem;
  border-radius: 50px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
  text-align: center;
  justify-content: center;
}

.btn--primary {
  background: linear-gradient(135deg, var(--wine) 0%, var(--wine-dark) 100%);
  color: var(--white);
  border-color: var(--wine);
  box-shadow: 0 4px 16px rgba(92,26,46,0.3);
}

.btn--primary:hover {
  background: linear-gradient(135deg, var(--wine-dark) 0%, var(--wine-deep) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(92,26,46,0.4);
}

.btn--ghost {
  background: transparent;
  color: var(--cream);
  border-color: rgba(249,245,238,0.4);
}

.btn--ghost:hover {
  background: rgba(249,245,238,0.1);
  border-color: var(--gold-light);
  color: var(--gold-light);
  transform: translateY(-2px);
}

.btn--gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--white);
  border-color: var(--gold);
  box-shadow: 0 4px 16px rgba(201,168,76,0.3);
}

.btn--gold:hover {
  background: linear-gradient(135deg, var(--gold-dark) 0%, #7A5C20 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.4);
}

.btn--lg {
  padding: 1.1rem 2.2rem;
  font-size: 1rem;
  gap: 0.8rem;
}

.btn--lg i {
  font-size: 1.4rem;
}

.btn--lg div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.btn--lg div small {
  font-size: 0.72rem;
  font-weight: 400;
  opacity: 0.85;
}

/* =============================
   HEADER
   ============================= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: all var(--transition);
  background: transparent;
}

.header.scrolled {
  background: rgba(38,9,26,0.95);
  backdrop-filter: blur(12px);
  padding: 0.6rem 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--white);
}

.logo__symbol {
  color: var(--gold);
  font-size: 1.4rem;
}

.logo__name {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.1;
  color: var(--white);
}

.logo__sub {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav__link {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color var(--transition);
}

.nav__link:hover,
.nav__link.active {
  color: var(--gold-light);
}

.nav__link--cta {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--white);
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-size: 0.85rem;
}

.nav__link--cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(201,168,76,0.4);
  color: var(--white);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition);
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =============================
   HERO
   ============================= */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--wine-deep) 0%, var(--wine) 50%, #8B2545 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 7rem 0 4rem;
}

.hero__particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.2rem;
}

.hero__title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero__subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 480px;
}

.hero__stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.hero__stat {
  text-align: center;
}

.hero__stat-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}

.hero__stat-label {
  display: block;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 0.2rem;
}

.hero__stat-divider {
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,0.2);
}

.hero__ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.hero__trust {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.hero__trust span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
}

.hero__trust i {
  color: var(--gold);
}

/* Hero Visual */
.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 480px;
}

/* Foto no Hero */
.hero__photo-wrap {
  position: relative;
  width: 300px;
  height: 400px;
  animation: float-card 6s ease-in-out infinite;
  flex-shrink: 0;
}

.hero__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-xl);
  display: block;
  position: relative;
  z-index: 2;
  box-shadow: 0 24px 64px rgba(0,0,0,0.5);
  border: 2px solid rgba(201,168,76,0.4);
}

.hero__photo-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.25);
  z-index: 1;
  top: 50%;
  left: 50%;
}

.hero__photo-ring--outer {
  width: 420px;
  height: 420px;
  transform: translate(-50%, -50%);
  animation: rotate-glow 14s linear infinite;
}

.hero__photo-ring--inner {
  width: 340px;
  height: 340px;
  transform: translate(-50%, -50%);
  border-color: rgba(201,168,76,0.15);
  animation: rotate-glow 10s linear infinite reverse;
}

.hero__photo-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 35%;
  background: linear-gradient(to top, rgba(38,9,26,0.7) 0%, transparent 100%);
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
  z-index: 3;
}

/* Floating badges */
.hero__badge-float {
  position: absolute;
  background: rgba(249,245,238,0.12);
  border: 1px solid rgba(201,168,76,0.35);
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.4rem 0.9rem;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  backdrop-filter: blur(6px);
  white-space: nowrap;
}

.hero__badge-float--1 { top: 10%; right: -5%; animation: float-badge-1 5s ease-in-out infinite; }
.hero__badge-float--2 { top: 50%; right: -8%; animation: float-badge-2 6s ease-in-out infinite 0.5s; }
.hero__badge-float--3 { bottom: 12%; left: -5%; animation: float-badge-3 5.5s ease-in-out infinite 1s; }

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.5);
  font-size: 1.2rem;
  animation: bounce 2s infinite;
  z-index: 1;
}

/* Particles */
.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: particle-float var(--duration) ease-in-out infinite var(--delay);
}

/* =============================
   SOBRE
   ============================= */
.sobre {
  padding: 6rem 0;
  background: var(--cream);
}

.sobre__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.sobre__img-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.sobre__img-ring {
  position: absolute;
  width: 90%;
  height: 90%;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.25);
  animation: rotate-glow 12s linear infinite;
}

.sobre__img {
  width: 320px;
  height: 420px;
  object-fit: cover;
  object-position: center 15%;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(92,26,46,0.25);
  border: 3px solid rgba(201,168,76,0.35);
  position: relative;
  z-index: 1;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.sobre__img:hover {
  transform: scale(1.02);
  box-shadow: 0 28px 72px rgba(92,26,46,0.35);
}

.sobre__img-badge {
  position: absolute;
  bottom: 1.5rem;
  right: 1rem;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 0.6rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.1rem;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  box-shadow: var(--shadow-md);
  z-index: 2;
}

.sobre__img-badge i {
  font-size: 1.2rem;
}

.sobre__content .section-tag { display: block; }
.sobre__text {
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-size: 0.97rem;
  line-height: 1.8;
}

.sobre__text strong { color: var(--text); font-weight: 600; }
.sobre__text em { color: var(--wine); font-style: italic; }

.sobre__especialidades {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  margin: 1.5rem 0 2rem;
}

.sobre__esp-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--cream-dark);
  border-radius: var(--radius-sm);
  padding: 0.6rem 0.9rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--wine);
  border: 1px solid rgba(201,168,76,0.2);
}

.sobre__esp-item i {
  color: var(--gold);
  font-size: 0.9rem;
}

/* =============================
   IDENTIFICAÇÃO
   ============================= */
.identificacao {
  padding: 6rem 0;
  background: linear-gradient(160deg, var(--wine-deep) 0%, var(--wine) 100%);
  position: relative;
  overflow: hidden;
}

.identificacao::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 60%);
  pointer-events: none;
}

/* TABS */
.ident__tabs {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.ident__tab {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(249,245,238,0.6);
  border: 1px solid rgba(249,245,238,0.2);
  background: transparent;
  transition: all var(--transition);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.ident__tab:hover,
.ident__tab.active {
  background: rgba(201,168,76,0.15);
  border-color: var(--gold);
  color: var(--gold-light);
}

/* PANEL */
.ident__panel {
  display: none;
  animation: fadeInUp 0.4s ease;
}

.ident__panel.active {
  display: block;
}

.ident__panel-intro {
  text-align: center;
  color: rgba(249,245,238,0.65);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  font-style: italic;
}

/* =============================
   CHECK ITEMS — CORRIGIDO
   ============================= */
.ident__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 0.75rem;
  margin-bottom: 2rem;
}

/* O elemento label é o contêiner clicável */
.check-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(249,245,238,0.12);
  background: rgba(249,245,238,0.05);
  cursor: pointer;
  transition: all var(--transition);
  /* Touch optimization */
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  user-select: none;
  -webkit-user-select: none;
  position: relative;
}

.check-item:hover {
  background: rgba(201,168,76,0.12);
  border-color: rgba(201,168,76,0.4);
}

/* Esconde o input nativo mas mantém acessibilidade */
.check-item__input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

/* Caixa visual personalizada */
.check-item__box {
  width: 22px;
  height: 22px;
  min-width: 22px;
  border-radius: 5px;
  border: 2px solid rgba(201,168,76,0.5);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  pointer-events: none;
}

.check-item__box i {
  font-size: 0.6rem;
  color: var(--white);
  opacity: 0;
  transform: scale(0);
  transition: all 0.2s ease;
}

/* Estado marcado via classe JS */
.check-item.checked {
  background: rgba(201,168,76,0.18);
  border-color: var(--gold);
}

.check-item.checked .check-item__box {
  background: var(--gold);
  border-color: var(--gold);
}

.check-item.checked .check-item__box i {
  opacity: 1;
  transform: scale(1);
}

.check-item.checked .check-item__label {
  color: var(--gold-light);
}

.check-item__label {
  font-size: 0.88rem;
  color: rgba(249,245,238,0.8);
  transition: color var(--transition);
  pointer-events: none;
  line-height: 1.4;
}

/* Resultado */
.ident__result {
  text-align: center;
  padding: 1.5rem;
  background: rgba(249,245,238,0.06);
  border-radius: var(--radius-md);
  border: 1px solid rgba(201,168,76,0.2);
  min-height: 80px;
}

.ident__result-text {
  color: rgba(249,245,238,0.7);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.ident__result-count {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold-light);
}

.ident__result-btn {
  display: none;
}

.ident__result-btn.visible {
  display: inline-flex;
}

.ident__disclaimer {
  text-align: center;
  margin-top: 1.5rem;
  color: rgba(249,245,238,0.4);
  font-size: 0.78rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

/* =============================
   MÉTODO
   ============================= */
.metodo {
  padding: 6rem 0;
  background: var(--cream-dark);
}

.metodo__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.metodo__card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(201,168,76,0.15);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.metodo__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--wine) 100%);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.metodo__card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.metodo__card:hover::before {
  transform: scaleX(1);
}

.metodo__num {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(201,168,76,0.15);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.metodo__icon {
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.metodo__title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--wine);
  margin-bottom: 0.8rem;
}

.metodo__desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* =============================
   SERVIÇOS
   ============================= */
.servicos {
  padding: 6rem 0;
  background: var(--cream);
}

.servicos__categorias {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.servicos__cat {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(201,168,76,0.15);
  display: flex;
  flex-direction: column;
}

.servicos__cat-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 2rem;
  background: linear-gradient(135deg, var(--wine) 0%, var(--wine-dark) 100%);
  color: var(--white);
}

.servicos__cat-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--gold-light);
}

.servicos__cat-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.2rem;
}

.servicos__cat-price {
  font-size: 0.82rem;
  color: var(--gold-light);
  font-weight: 600;
}

.servicos__lista {
  padding: 1.5rem 2rem;
  flex: 1;
}

.servico-item {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(201,168,76,0.1);
}

.servico-item:last-child { border-bottom: none; }

.servico-item__icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: linear-gradient(135deg, rgba(201,168,76,0.15) 0%, rgba(92,26,46,0.08) 100%);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  font-size: 0.9rem;
  margin-top: 0.1rem;
}

.servico-item__name {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--wine);
  margin-bottom: 0.3rem;
}

.servico-item__desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.servicos__cat-cta {
  margin: 0 2rem 2rem;
  justify-content: center;
}

.servicos__ambos {
  background: linear-gradient(135deg, var(--wine) 0%, var(--wine-dark) 100%);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  text-align: center;
  color: var(--white);
}

.servicos__ambos p {
  font-size: 1rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 1.5rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* =============================
   DEPOIMENTOS
   ============================= */
.depoimentos {
  padding: 6rem 0;
  background: linear-gradient(160deg, var(--wine-deep) 0%, #4A1525 100%);
}

.dep__stats {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.dep__stat {
  text-align: center;
}

.dep__stat-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-light);
}

.dep__stat-label {
  display: block;
  font-size: 0.75rem;
  color: rgba(249,245,238,0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.dep__stars {
  font-size: 1.3rem;
  color: var(--gold);
}

.dep__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.dep__card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  transition: all var(--transition);
}

.dep__card:hover {
  background: rgba(255,255,255,0.09);
  transform: translateY(-4px);
  border-color: rgba(201,168,76,0.4);
}

.dep__stars-small {
  color: var(--gold);
  font-size: 0.8rem;
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
}

.dep__text {
  font-size: 0.9rem;
  color: rgba(249,245,238,0.8);
  line-height: 1.7;
  margin-bottom: 1.2rem;
  font-style: italic;
}

.dep__author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.dep__avatar {
  width: 38px;
  height: 38px;
  min-width: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--wine) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
}

.dep__name {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--cream);
}

.dep__tipo {
  font-size: 0.72rem;
  color: var(--gold);
}

/* =============================
   FAQ
   ============================= */
.faq {
  padding: 6rem 0;
  background: var(--cream-dark);
}

.faq__list {
  max-width: 750px;
  margin: 0 auto;
}

.faq__item {
  border-bottom: 1px solid rgba(201,168,76,0.2);
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.3rem 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--wine);
  text-align: left;
  gap: 1rem;
  transition: color var(--transition);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.faq__question:hover { color: var(--gold-dark); }

.faq__icon {
  color: var(--gold);
  font-size: 0.85rem;
  transition: transform var(--transition);
  min-width: 16px;
}

.faq__item.open .faq__icon {
  transform: rotate(45deg);
}

.faq__answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq__item.open .faq__answer {
  max-height: 300px;
}

.faq__answer p {
  padding: 0 0 1.3rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* =============================
   CTA FINAL
   ============================= */
.cta-final {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--wine-deep) 0%, var(--wine) 100%);
  position: relative;
  overflow: hidden;
}

.cta-final::before {
  content: '✦';
  position: absolute;
  font-size: 20rem;
  color: rgba(201,168,76,0.04);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  font-family: var(--font-serif);
}

.cta-final__inner {
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}

.cta-final__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.cta-final__title em {
  font-style: italic;
  color: var(--gold-light);
}

.cta-final__subtitle {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.cta-final__subtitle strong {
  color: var(--gold-light);
}

.cta-final__btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.cta-final__disclaimer {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.cta-final__disclaimer i {
  color: var(--gold);
}

/* =============================
   FOOTER
   ============================= */
.footer {
  background: var(--wine-deep);
  padding: 2.5rem 0 0;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(201,168,76,0.15);
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--white);
}

.footer__brand .logo__symbol {
  font-size: 1.5rem;
}

.footer__name {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
}

.footer__desc {
  font-size: 0.75rem;
  color: rgba(249,245,238,0.45);
}

.footer__links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer__links a {
  font-size: 0.85rem;
  color: rgba(249,245,238,0.5);
  transition: color var(--transition);
}

.footer__links a:hover { color: var(--gold-light); }

.footer__social { display: flex; gap: 0.8rem; }

.footer__social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  transition: all var(--transition);
}

.footer__social-link:hover {
  background: rgba(37,211,102,0.2);
  border-color: #25D366;
  color: #25D366;
}

.footer__copy {
  padding: 1rem 0;
  text-align: center;
}

.footer__copy p {
  font-size: 0.75rem;
  color: rgba(249,245,238,0.3);
}

/* =============================
   BOTÃO FLUTUANTE
   ============================= */
.float-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-end;
  gap: 0.75rem;
}

.float-btn__main {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  transition: all var(--transition);
  position: relative;
  cursor: pointer;
}

.float-btn__main:hover {
  background: #20BA5A;
  transform: scale(1.08);
}

.float-btn__pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #25D366;
  animation: pulse-ring 2.5s ease-out infinite;
  opacity: 0;
}

.float-btn__menu {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: flex-end;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: all var(--transition);
}

.float-btn__menu.open {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.float-btn__option {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 1rem;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--white);
  white-space: nowrap;
  box-shadow: var(--shadow-md);
  transition: all var(--transition);
}

.float-btn__option:hover { transform: translateX(-3px); }

.float-btn__option--1 { background: linear-gradient(135deg, var(--wine) 0%, var(--wine-dark) 100%); }
.float-btn__option--2 { background: linear-gradient(135deg, #2A4A7A 0%, #1A3560 100%); }
.float-btn__option--3 { background: linear-gradient(135deg, var(--gold-dark) 0%, #7A5C20 100%); }

/* =============================
   KEYFRAMES
   ============================= */
@keyframes float-card {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes float-badge-1 {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-8px) rotate(2deg); }
}

@keyframes float-badge-2 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes float-badge-3 {
  0%, 100% { transform: translateY(0) rotate(2deg); }
  50% { transform: translateY(-6px) rotate(-2deg); }
}

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

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-8px); }
}

@keyframes pulse-ring {
  0% { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(1.8); opacity: 0; }
}

@keyframes particle-float {
  0% { opacity: 0; transform: translateY(100vh); }
  10% { opacity: 0.8; }
  90% { opacity: 0.3; }
  100% { opacity: 0; transform: translateY(-10vh); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* =============================
   RESPONSIVE
   ============================= */
@media (max-width: 1024px) {
  .servicos__categorias {
    grid-template-columns: 1fr;
  }
  .dep__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    max-width: 320px;
    height: 100vh;
    background: var(--wine-deep);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 2rem;
    gap: 1.5rem;
    transition: right var(--transition);
    box-shadow: -8px 0 30px rgba(0,0,0,0.4);
    z-index: 999;
  }

  .nav.open { right: 0; }

  .nav__link {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.85);
  }

  .nav__link--cta {
    font-size: 0.9rem;
  }

  .hamburger { display: flex; z-index: 1001; }

  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__subtitle { max-width: 100%; }
  .hero__stats { justify-content: center; }
  .hero__ctas { justify-content: center; }
  .hero__trust { justify-content: center; }
  .hero__visual {
    display: flex;
    height: 280px;
    order: -1;
  }

  .hero__photo-wrap {
    width: 180px;
    height: 240px;
  }

  .hero__photo-ring--outer { width: 260px; height: 260px; }
  .hero__photo-ring--inner { width: 210px; height: 210px; }

  .hero__badge-float--1 { top: 5%; right: 0; font-size: 0.65rem; }
  .hero__badge-float--2 { top: 45%; right: -5%; font-size: 0.65rem; }
  .hero__badge-float--3 { bottom: 5%; left: 0; font-size: 0.65rem; }

  .sobre__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }

  .sobre__img { width: 280px; height: 360px; margin: 0 auto; object-position: center 15%; }
  .sobre__especialidades { grid-template-columns: 1fr 1fr; }

  .metodo__grid { grid-template-columns: 1fr; }

  .ident__grid {
    grid-template-columns: 1fr;
  }

  .dep__grid { grid-template-columns: 1fr; }

  .cta-final__btns { flex-direction: column; align-items: center; }

  .footer__inner { flex-direction: column; text-align: center; }
  .footer__links { justify-content: center; }
  .footer__social { justify-content: center; }

  .float-btn { bottom: 1.2rem; right: 1.2rem; }
}

@media (max-width: 480px) {
  .hero__stats {
    gap: 0.8rem;
  }

  .hero__stat-num { font-size: 1.2rem; }

  .ident__grid {
    grid-template-columns: 1fr;
  }

  .check-item {
    padding: 1rem;
  }

  .check-item__box {
    width: 26px;
    height: 26px;
    min-width: 26px;
  }

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