/* ===================================================================
   ROOT VARIÁVEIS (CORES E TEMAS)
   =================================================================== */
:root {
  --gold: #D4AF37;
  --gold-light: #E8C84A;
  --gold-dim: rgba(212, 175, 55, 0.12);
  --gold-border: rgba(212, 175, 55, 0.25);

  --bg: #05070A;
  --bg-2: #0A0F16;
  --bg-card: #0F1620;
  --bg-card-2: #141C2A;
  --text: #EDEAE3;
  --text-muted: #8F94A3;
  --text-faint: #4A5066;
  --border: rgba(255, 255, 255, 0.05);
  --nav-bg: rgba(5, 7, 10, 0.95);
  --shadow: 0 8px 40px rgba(0, 0, 0, 0.6);
  --transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

::selection {
  background: var(--gold);
  color: #000;
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 10px;
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
  border-radius: 4px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 4rem 0;
  position: relative;
}

@media (min-width: 768px) {
  .section {
    padding: 5rem 0;
  }
}

.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.section-label {
  font-family: 'Syne', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
}

@media (min-width: 768px) {
  .section-label {
    justify-content: flex-start;
  }
}

.section-label::before {
  content: '';
  width: 30px;
  height: 2px;
  background: var(--gold);
}

.section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.5rem, 5vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
  text-align: center;
}

@media (min-width: 768px) {
  .section-title {
    text-align: left;
  }
}

.section-title em {
  font-style: normal;
  color: var(--gold);
}

/* ===================================================================
   BOTÕES
   =================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.8rem 1.5rem;
  border-radius: 12px;
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: var(--transition);
  border: 1px solid transparent;
  cursor: pointer;
  width: 100%;
}

.btn:active {
  transform: scale(0.97);
}

@media (min-width: 500px) {
  .btn {
    width: auto;
  }
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2);
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1rem;
}

/* ===================================================================
   HEADER E NAVBAR (estilo Brownie)
   =================================================================== */
.main-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0 1.5rem;
  background-color: transparent;
  transition: all 0.4s ease;
}

.main-header.scrolled {
  background-color: rgba(5, 7, 10, 0.96);
  backdrop-filter: blur(16px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--border);
  position: relative;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  transition: var(--transition);
  text-decoration: none;
}

.nav-logo:hover {
  opacity: 0.85;
  transform: scale(0.98);
}

.logo-mark {
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 50%;
  background: #091015; /* Fundo idêntico ao do favicon para fusão perfeita */
  border: 1.5px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
}

.logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* Muda de cover para contain - NÃO CORTA a imagem */
  position: absolute;
  top: 0;
  left: 0;
  padding: 0.25rem; /* Pequeno espaçamento interno para não encostar na borda */
}

/* Fallback - texto GL caso a imagem não carregue */
.logo-mark .logo-initials {
  display: none;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--gold);
  position: relative;
  z-index: 1;
}

/* Se a imagem falhar, mostra o texto */
.logo-mark img:not([src]) + .logo-initials,
.logo-mark img[src=""] + .logo-initials,
.logo-mark img[onerror] + .logo-initials {
  display: flex;
}

/* Esconde a imagem se falhar */
.logo-mark img:not([src]),
.logo-mark img[src=""],
.logo-mark img[onerror] {
  display: none;
}

.logo-wordmark {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
}

.logo-wordmark span {
  color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

@media (max-width: 1023px) {
  .nav-links {
    display: none;
  }
}

.nav-link {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding-bottom: 0.3rem;
  border-bottom: 1.5px solid transparent;
  transition: var(--transition);
  position: relative;
  text-decoration: none;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: var(--gold);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link.active {
  color: var(--gold);
}

.nav-link.active::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2rem;
  height: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.1rem;
}

@media (max-width: 1023px) {
  .menu-toggle {
    display: flex;
  }
}

.bar {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--gold);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.menu-toggle.active .bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active .bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.menu-toggle.active .bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.35s ease;
  background-color: rgba(5, 7, 10, 0.98);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--gold-border);
}

.mobile-menu.open {
  max-height: 28rem;
  opacity: 1;
}

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  padding: 1rem 1.5rem;
  gap: 0.5rem;
}

.mobile-link {
  display: block;
  padding: 0.8rem 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
  text-decoration: none;
}

.mobile-link:hover {
  color: var(--gold);
  padding-left: 0.5rem;
}

/* ===================================================================
   SEÇÃO HERO
   =================================================================== */
.hero {
  min-height: calc(100vh - 70px); /* Ajusta considerando a altura do header */
  display: flex;
  align-items: center;
  padding: 1rem 0 2rem; /* Reduzido drasticamente o padding-top */
  position: relative;
  overflow: hidden;
}

.hero-bg-circle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  transition: transform 0.5s ease;
}

.hero-bg-circle-1 {
  width: 300px;
  height: 300px;
  top: -100px;
  right: -100px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
}

@media (min-width: 768px) {
  .hero-bg-circle-1 {
    width: 500px;
    height: 500px;
    top: -150px;
    right: -150px;
  }
}

.hero-bg-circle-2 {
  width: 250px;
  height: 250px;
  bottom: -60px;
  left: -60px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
}

@media (min-width: 768px) {
  .hero-bg-circle-2 {
    width: 350px;
    height: 350px;
    bottom: -100px;
    left: -100px;
  }
}

.hero-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.04;
  background-image: linear-gradient(var(--gold) 1px, transparent 1px), linear-gradient(90deg, var(--gold) 1px, transparent 1px);
  background-size: 40px 40px;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

@media (min-width: 768px) {
  .hero-content {
    text-align: left;
  }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  border-radius: 50px;
  padding: 0.3rem 1rem;
  font-size: 0.7rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
  transition: var(--transition);
}

.hero-eyebrow .dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}

.hero-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.8rem, 7vw, 3.8rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.hero-title .gold {
  color: var(--gold);
  display: inline-block;
}

.hero-subtitle {
  font-size: clamp(0.95rem, 3vw, 1.15rem);
  color: var(--text-muted);
  max-width: 100%;
  margin-bottom: 2rem;
  line-height: 1.5;
}

@media (min-width: 768px) {
  .hero-subtitle {
    max-width: 550px;
  }
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  width: 100%;
}

@media (min-width: 500px) {
  .hero-buttons {
    flex-direction: row;
    justify-content: center;
  }
}

@media (min-width: 768px) {
  .hero-buttons {
    justify-content: flex-start;
  }
}

/* ===================================================================
   SEÇÃO SOBRE
   =================================================================== */
.about-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 3rem;
    align-items: center;
  }
}

@media (min-width: 1025px) {
  .about-grid {
    grid-template-columns: 1fr 1.8fr;
    gap: 4rem;
    align-items: center;
  }
}

.photo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.photo-placeholder {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--bg-card), var(--bg-2));
  border: 3px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: var(--transition);
  margin: 0 auto;
}

@media (min-width: 768px) {
  .photo-placeholder {
    width: 300px;
    height: 300px;
  }
}

@media (min-width: 1025px) {
  .photo-placeholder {
    width: 320px;
    height: 320px;
  }
}

.photo-placeholder:hover {
  border-color: var(--gold);
  transform: scale(1.02);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.15);
}

.profile-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.photo-placeholder picture,
.photo-placeholder img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: block;
}

.photo-badge {
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  border-radius: 50px;
  padding: 0.5rem 1.5rem;
  font-size: 0.85rem;
  color: var(--gold);
  margin-top: 0.8rem;
  display: inline-block;
  transition: var(--transition);
}

.photo-badge:hover {
  background: var(--gold-border);
  transform: translateY(-2px);
}

.about-text {
  text-align: center;
}

@media (min-width: 768px) {
  .about-text {
    text-align: left;
  }
}

.about-text p {
  color: var(--text-muted);
  margin-bottom: 0.8rem;
  font-size: 0.9rem;
  line-height: 1.6;
  text-align: justify;
}

.about-highlights {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 1.2rem;
}

@media (min-width: 768px) {
  .about-highlights {
    justify-content: flex-start;
  }
}

.highlight-tag {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.3rem 0.8rem;
  font-size: 0.7rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: var(--transition);
}

.highlight-tag:hover {
  border-color: var(--gold-border);
  color: var(--gold);
  transform: translateY(-2px);
}

.highlight-tag i {
  color: var(--gold);
}

/* ===================================================================
   CARDS SERVIÇOS
   =================================================================== */
.services-bg {
  background: var(--bg-2);
}

.cards-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

@media (min-width: 640px) {
  .cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
  }
}

@media (min-width: 1025px) {
  .cards-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .card {
    text-align: left;
  }
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card:hover {
  border-color: var(--gold-border);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.card:hover::before {
  opacity: 1;
}

.card-icon {
  font-size: 2rem;
  margin-bottom: 0.8rem;
  color: var(--gold);
  display: inline-block;
  transition: transform 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

.card:hover .card-icon {
  transform: scale(1.08);
}

.card-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.card-desc {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.5;
  transition: color 0.3s ease;
}

.card:hover .card-desc {
  color: var(--text);
}


/* ===================================================================
   CARDS PÚBLICO-ALVO
   =================================================================== */
.forwhom-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

@media (min-width: 640px) {
  .forwhom-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
  }
}

@media (min-width: 1025px) {
  .forwhom-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

.forwhom-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .forwhom-card {
    text-align: left;
  }
}

.forwhom-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.forwhom-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.forwhom-card:hover::before {
  opacity: 1;
}

.forwhom-icon {
  font-size: 2rem;
  margin-bottom: 0.8rem;
  color: var(--gold);
  display: inline-block;
  transition: transform 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

.forwhom-card:hover .forwhom-icon {
  transform: scale(1.08);
}

.forwhom-name {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.forwhom-desc {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.5;
  transition: color 0.3s ease;
}

.forwhom-card:hover .forwhom-desc {
  color: var(--text);
}

.forwhom-tag {
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  border-radius: 50px;
  padding: 0.25rem 0.8rem;
  font-size: 0.7rem;
  color: var(--gold);
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  transition: all 0.3s ease;
}

.forwhom-card:hover .forwhom-tag {
  background: var(--gold-border);
  transform: translateY(-2px);
}

@media (min-width: 768px) {
  .forwhom-tag {
    margin-left: 0;
    margin-right: 0;
  }
}
/* ===================================================================
   SEÇÃO PREÇOS
   =================================================================== */
.pricing-bg {
  background: var(--bg-2);
}

.pricing-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.pricing-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1.5rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: var(--transition);
}

.pricing-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.pricing-card:hover::before {
  opacity: 1;
}

.pricing-label {
  font-family: 'Syne', sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 0.3rem;
}

.pricing-name {
  font-family: 'Syne', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 0.8rem;
}

.pricing-from {
  font-size: 0.75rem;
  color: var(--text-muted);
  display: block;
}

.pricing-value {
  font-family: 'Syne', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  transition: var(--transition);
}

.pricing-card:hover .pricing-value {
  transform: scale(1.02);
}

.pricing-value sup {
  font-size: 1rem;
}

.pricing-features {
  list-style: none;
  margin-top: 1rem;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  transition: var(--transition);
}

.pricing-card:hover .pricing-features li {
  color: var(--text);
}

.pricing-features li i {
  color: var(--gold);
  font-size: 0.7rem;
  width: 16px;
}

.pricing-note {
  margin-top: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1.2rem 1.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  gap: 1rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  position: relative;
  overflow: hidden;
}

.pricing-note::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.pricing-note:hover {
  border-color: var(--gold-border);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.pricing-note:hover::before {
  opacity: 1;
}

.pricing-note i {
  color: var(--gold);
  flex-shrink: 0;
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.pricing-note:hover i {
  transform: scale(1.05);
}

/* ===================================================================
   SEÇÃO FAQ
   =================================================================== */
.faq-wrapper {
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
}

.faq-list {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  width: 100%;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  width: 100%;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: var(--gold-border);
}

.faq-item.open {
  border-color: var(--gold-border);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  text-align: left;
  color: var(--text);
  font-family: 'Syne', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  gap: 0.8rem;
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--gold);
}

.faq-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.7rem;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding: 0 1rem 1rem;
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.6;
}

.faq-item.open .faq-answer {
  display: block;
}

/* ===================================================================
   SEÇÃO CONTATO
   =================================================================== */
.contact-bg {
  background: var(--bg-2);
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
  }
}

.contact-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.3rem, 4vw, 1.8rem);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 0.5rem;
  text-align: center;
}

@media (min-width: 768px) {
  .contact-headline {
    text-align: left;
  }
}

.contact-headline em {
  font-style: normal;
  color: var(--gold);
}

.contact-para {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  text-align: center;
}

@media (min-width: 768px) {
  .contact-para {
    text-align: left;
  }
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
  color: var(--text);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 0.8rem 1rem;
  transition: var(--transition);
}

.contact-link:hover {
  border-color: var(--gold-border);
  transform: translateX(5px);
  background: var(--bg-card-2);
}

.contact-link:focus-visible {
  outline: 2px solid var(--gold);
  transform: translateX(5px);
}

.contact-link-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition);
}

.contact-link:hover .contact-link-icon {
  transform: scale(1.05);
}

.contact-link-icon.wpp {
  background: rgba(37, 211, 102, 0.12);
  color: #25D366;
}

.contact-link-icon.email {
  background: var(--gold-dim);
  color: var(--gold);
}

.contact-link-icon.insta {
  background: rgba(225, 48, 108, 0.12);
  color: #E1306C;
}

.contact-link-text {
  display: flex;
  flex-direction: column;
}

.contact-link-label {
  font-size: 0.65rem;
  color: var(--text-faint);
  letter-spacing: 0.5px;
}

.contact-link-value {
  font-size: 0.85rem;
  font-weight: 500;
}

.contact-cta-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1.5rem;
  text-align: center;
  transition: var(--transition);
}

.contact-cta-box:hover {
  border-color: var(--gold-border);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

@media (min-width: 768px) {
  .contact-cta-box {
    text-align: left;
  }
}

.contact-cta-box h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

@media (min-width: 768px) {
  .contact-cta-box h3 {
    justify-content: flex-start;
  }
}

.contact-cta-box h3 i {
  color: var(--gold);
}

.edit-message-area {
  margin-bottom: 1rem;
}

.edit-message-area label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
  text-align: center;
}

@media (min-width: 768px) {
  .edit-message-area label {
    text-align: left;
  }
}

.edit-message-area textarea {
  width: 100%;
  padding: 0.8rem;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  resize: vertical;
  transition: var(--transition);
}

.edit-message-area textarea:focus {
  outline: none;
  border-color: var(--gold);
}

/* ===================================================================
   CTA FINAL
   =================================================================== */
.cta-bg {
  background: linear-gradient(135deg, var(--bg-2), var(--bg));
  text-align: center;
  padding: 4rem 0;
}

.cta-box {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 1rem;
}

.cta-box h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.5rem, 5vw, 2rem);
  margin-bottom: 1rem;
}

.cta-box h2 .gold {
  color: var(--gold);
}

.cta-box p {
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-size: 1rem;
}

/* ===================================================================
   RODAPÉ
   =================================================================== */
footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 2rem 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
}

@media (min-width: 768px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--text);
  transition: var(--transition);
}

.footer-logo span {
  color: var(--gold);
}

.footer-logo:hover {
  opacity: 0.85;
}

.footer-sub {
  font-size: 0.7rem;
  color: var(--text-faint);
}

.footer-tagline {
  font-size: 0.7rem;
  color: var(--text-faint);
  text-align: center;
}

@media (min-width: 768px) {
  .footer-tagline {
    text-align: right;
  }
}

.footer-tagline strong {
  color: var(--gold);
}

/* ===================================================================
   WHATSAPP FLOAT
   =================================================================== */
.wpp-float-wrapper {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  z-index: 990;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.4rem;
}

.wpp-tooltip {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: 10px;
  padding: 0.3rem 0.8rem;
  font-size: 0.65rem;
  color: var(--gold);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
  box-shadow: var(--shadow);
}

.wpp-float-wrapper:hover .wpp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

.wpp-float {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #fff;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.wpp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

/* ===================================================================
   ANIMAÇÃO DE REVELAR
   =================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}