/* ==========================================================================
   DRA. RENATA CASTRO — ADVOCACIA DE FAMÍLIA
   Design System & Stylesheet
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. DESIGN TOKENS (Custom Properties)
   -------------------------------------------------------------------------- */
:root {
  /* Paleta Azul-Marinho */
  --navy-950: #09253A;
  --navy-900: #0D2E47;
  --navy-800: #163A55;
  --navy-700: #1F4C6E;

  /* Paleta Dourada */
  --gold-600: #A97835;
  --gold-500: #C69A5B;
  --gold-400: #D6B47D;
  --gold-light: #E5C99B;
  --gold-soft: rgba(198, 154, 91, 0.12);

  /* Superfícies e Neutros */
  --white: #FFFFFF;
  --ivory: #FCFAF7;
  --cream: #F7F2EA;
  --sand: #EFE5D6;
  --sand-dark: #DDD2C0;

  /* Tipografia & Textos */
  --text-primary: #0D2E47;
  --text-secondary: #53616D;
  --text-muted: #7A838C;
  --text-on-dark: #F5F7FA;
  --text-on-dark-muted: #B8C7D4;

  /* Cores de Ação */
  --whatsapp: #12B85A;
  --whatsapp-hover: #0FA44F;

  /* Tipografia */
  --font-serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Layout & Espaçamentos */
  --container-max: 1280px;
  --container-wide: 1360px;
  --section-padding-desktop: 96px;
  --section-padding-highlight: 110px;
  --section-padding-tablet: 72px;
  --section-padding-mobile: 56px;

  /* Bordas e Sombras */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-full: 9999px;
  --border-subtle: 1px solid var(--sand);
  --border-card: 1px solid rgba(222, 212, 196, 0.7);
  --shadow-subtle: 0 4px 20px rgba(13, 46, 71, 0.04);
  --shadow-elevated: 0 10px 30px rgba(13, 46, 71, 0.08);
  --transition-fast: 180ms ease;
  --transition-smooth: 260ms cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  background-color: var(--ivory);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul, ol {
  list-style: none;
}

/* Acessibilidade de foco */
:focus-visible {
  outline: 2px solid var(--gold-500);
  outline-offset: 3px;
}

/* --------------------------------------------------------------------------
   3. TIPOGRAFIA COMPARTILHADA
   -------------------------------------------------------------------------- */
.serif-h1 {
  font-family: var(--font-serif);
  font-size: clamp(3.2rem, 5vw, 5.4rem);
  line-height: 1.02;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--navy-900);
}

.serif-h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 3.5vw, 3.8rem);
  line-height: 1.08;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--navy-900);
}

.serif-h3 {
  font-family: var(--font-serif);
  font-size: 1.65rem;
  line-height: 1.2;
  font-weight: 600;
  color: var(--navy-900);
}

.section-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold-600);
  margin-bottom: 12px;
  display: inline-block;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 580px;
  margin-top: 12px;
}

.section-header-center {
  text-align: center;
  margin-bottom: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* --------------------------------------------------------------------------
   4. LAYOUT CONTAINERS
   -------------------------------------------------------------------------- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-inline: 32px;
}

.container-wide {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding-inline: 32px;
}

/* --------------------------------------------------------------------------
   5. BOTÕES & LINKS DE AÇÃO
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.btn-whatsapp {
  background-color: var(--whatsapp);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(18, 184, 90, 0.25);
}

.btn-whatsapp:hover {
  background-color: var(--whatsapp-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(18, 184, 90, 0.35);
}

.btn-gold-light {
  background-color: var(--gold-light);
  color: var(--navy-950);
  font-weight: 600;
}

.btn-gold-light:hover {
  background-color: #dbc091;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(229, 201, 155, 0.3);
}

.btn-secondary {
  background-color: var(--cream);
  color: var(--navy-900);
  border: 1px solid var(--sand);
}

.btn-secondary:hover {
  background-color: #eee7dc;
  border-color: var(--sand-dark);
  transform: translateY(-2px);
}

/* --------------------------------------------------------------------------
   6. HEADER PREMIUM
   -------------------------------------------------------------------------- */
.site-header {
  background-color: var(--navy-950);
  height: 78px;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(9, 37, 58, 0.25);
}

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

/* Brand Identity */
.brand-group {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-monogram {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--gold-400);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--gold-400);
  letter-spacing: -0.05em;
  background: radial-gradient(circle at 30% 30%, rgba(214, 180, 125, 0.15), transparent 70%);
}

.brand-text-block {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--white);
  line-height: 1.1;
  text-transform: uppercase;
}

.brand-subtitle {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--gold-400);
  text-transform: uppercase;
  margin-top: 2px;
}

.brand-tagline {
  font-size: 0.55rem;
  letter-spacing: 0.15em;
  color: #7997AD;
  text-transform: uppercase;
  margin-top: 1px;
}

/* Nav Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  font-size: 0.88rem;
  font-weight: 500;
  color: #D3DEE8;
  position: relative;
  padding-block: 6px;
}

.nav-link:hover {
  color: var(--gold-light);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--gold-400);
  transition: width var(--transition-fast);
}

.nav-link:hover::after {
  width: 100%;
}

.header-cta {
  display: flex;
  align-items: center;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  padding: 8px;
}

/* --------------------------------------------------------------------------
   7. HERO SECTION
   -------------------------------------------------------------------------- */
.hero-section {
  padding-top: 56px;
  padding-bottom: 72px;
  background: linear-gradient(180deg, #FBF8F3 0%, var(--ivory) 100%);
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 52% 48%;
  align-items: center;
  gap: 36px;
  min-height: 620px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  padding-right: 16px;
}

.hero-title {
  margin-bottom: 22px;
}

.hero-description {
  font-size: 1.15rem;
  line-height: 1.65;
  color: var(--text-secondary);
  max-width: 530px;
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 42px;
}

/* Badges de Confiança Inline */
.hero-trust-badges {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 28px;
  padding-top: 24px;
  border-top: var(--border-subtle);
}

.trust-badge-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--navy-900);
}

.trust-badge-icon {
  width: 22px;
  height: 22px;
  color: var(--navy-900);
  flex-shrink: 0;
}

/* Visual da Hero (Lado Direito) */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 560px;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 48px rgba(9, 37, 58, 0.12);
  overflow: hidden;
}

.hero-image-wrapper img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center center;
  display: block;
}

/* Card Editorial Flutuante - Perfeitamente alinhado na estante superior direita */
.hero-editorial-card {
  position: absolute;
  top: 24px;
  right: 24px;
  background: rgba(9, 37, 58, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(214, 180, 125, 0.28);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  max-width: 235px;
  color: var(--white);
  box-shadow: 0 10px 28px rgba(9, 37, 58, 0.22);
  z-index: 2;
  pointer-events: none;
}

.editorial-card-quote {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  line-height: 1.2;
  font-style: italic;
  color: var(--gold-400);
  margin-bottom: 8px;
}

.editorial-divider {
  width: 28px;
  height: 1.5px;
  background-color: var(--gold-500);
  margin-bottom: 8px;
}

.editorial-card-sub {
  font-size: 0.82rem;
  color: #D1DDE6;
  line-height: 1.45;
}

/* --------------------------------------------------------------------------
   8. BARRA DE DIFERENCIAIS (Trust Bar)
   -------------------------------------------------------------------------- */
.trust-bar-section {
  padding-block: 28px;
  position: relative;
  z-index: 10;
  margin-top: -32px;
}

.trust-bar-container {
  background-color: var(--white);
  border: var(--border-card);
  border-radius: var(--radius-md);
  padding: 32px 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  box-shadow: 0 10px 30px rgba(13, 46, 71, 0.05);
}

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  position: relative;
}

.trust-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -16px;
  top: 10%;
  height: 80%;
  width: 1px;
  background-color: var(--sand);
}

.trust-icon-box {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-500);
}

.trust-icon-box svg {
  width: 32px;
  height: 32px;
}

.trust-text-box h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy-900);
  margin-bottom: 4px;
  line-height: 1.3;
}

.trust-text-box p {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.45;
}

/* --------------------------------------------------------------------------
   9. SEÇÃO — NOSSOS SERVIÇOS
   -------------------------------------------------------------------------- */
.services-section {
  padding-block: var(--section-padding-desktop);
  background-color: var(--ivory);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background-color: #FAF6EF;
  border: 1px solid rgba(222, 212, 196, 0.8);
  border-radius: var(--radius-md);
  padding: 36px 30px;
  display: flex;
  align-items: center;
  gap: 22px;
  transition: all var(--transition-fast);
  position: relative;
}

.service-card:hover {
  background-color: var(--white);
  border-color: var(--gold-400);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(13, 46, 71, 0.08);
}

.service-icon-wrap {
  width: 54px;
  height: 54px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-500);
}

.service-icon-wrap svg {
  width: 40px;
  height: 40px;
}

.service-info {
  flex: 1;
}

.service-info h3 {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--navy-900);
  margin-bottom: 6px;
  line-height: 1.2;
}

.service-info p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.service-arrow-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--sand-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-600);
  flex-shrink: 0;
  transition: all var(--transition-fast);
}

.service-card:hover .service-arrow-btn {
  background-color: var(--gold-500);
  border-color: var(--gold-500);
  color: var(--white);
  transform: translateX(3px);
}

/* --------------------------------------------------------------------------
   10. SEÇÃO — SOBRE A DRA. RENATA CASTRO
   -------------------------------------------------------------------------- */
.about-section {
  padding-block: var(--section-padding-highlight);
  background-color: var(--white);
  border-block: var(--border-subtle);
}

.about-grid {
  display: grid;
  grid-template-columns: 36% 36% 28%;
  gap: 36px;
  align-items: center;
}

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

.about-image-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(9, 37, 58, 0.08);
}

.about-image-wrapper img {
  width: 100%;
  height: 440px;
  object-fit: cover;
}

.about-content-col {
  padding-inline: 10px;
}

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

.about-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-bottom: 22px;
  display: block;
}

.about-bio {
  font-size: 0.98rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 18px;
}

.about-credentials-col {
  background-color: var(--cream);
  border: var(--border-card);
  border-radius: var(--radius-md);
  padding: 32px 24px;
}

.credential-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding-block: 16px;
}

.credential-item:not(:last-child) {
  border-bottom: 1px solid var(--sand);
}

.credential-icon {
  width: 22px;
  height: 22px;
  color: var(--navy-900);
  flex-shrink: 0;
  margin-top: 2px;
}

.credential-text {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--navy-900);
  line-height: 1.4;
}

.credential-subtext {
  display: block;
  font-size: 0.76rem;
  color: var(--text-muted);
  margin-top: 2px;
  font-weight: 400;
}

/* --------------------------------------------------------------------------
   11. SEÇÃO — COMO FUNCIONA O ATENDIMENTO
   -------------------------------------------------------------------------- */
.process-section {
  padding-block: var(--section-padding-desktop);
  background-color: var(--ivory);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  margin-top: 20px;
}

.process-step-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px 24px;
  background-color: var(--white);
  border: var(--border-card);
  border-radius: var(--radius-md);
  position: relative;
  transition: all var(--transition-fast);
}

.process-step-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-elevated);
}

.process-number {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: var(--gold-500);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 22px;
  box-shadow: 0 4px 14px rgba(198, 154, 91, 0.3);
}

.process-title {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--navy-900);
  margin-bottom: 10px;
}

.process-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.55;
  max-width: 290px;
}

/* --------------------------------------------------------------------------
   12. SEÇÃO — DEPOIMENTOS
   -------------------------------------------------------------------------- */
.testimonials-section {
  padding-block: var(--section-padding-desktop);
  background-color: var(--white);
  border-block: var(--border-subtle);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  background-color: var(--cream);
  border: var(--border-card);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all var(--transition-fast);
}

.testimonial-card:hover {
  background-color: #F8F4ED;
  transform: translateY(-3px);
  box-shadow: var(--shadow-subtle);
}

.testimonial-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold-400);
}

.testimonial-author-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy-900);
}

.testimonial-author-city {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.testimonial-quote {
  font-size: 0.95rem;
  font-style: italic;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 24px;
  flex: 1;
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  color: var(--gold-500);
}

/* --------------------------------------------------------------------------
   13. SEÇÃO — DÚVIDAS FREQUENTES (FAQ)
   -------------------------------------------------------------------------- */
.faq-section {
  padding-block: var(--section-padding-desktop);
  background-color: var(--ivory);
}

.faq-header-bar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
}

.faq-link-all {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gold-600);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition-fast);
}

.faq-link-all:hover {
  gap: 10px;
  color: var(--gold-500);
}

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

.faq-item {
  background-color: var(--white);
  border: var(--border-card);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color var(--transition-fast);
}

.faq-item[open] {
  border-color: var(--gold-400);
}

.faq-question {
  padding: 22px 28px;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy-900);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  user-select: none;
  transition: background-color var(--transition-fast);
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question:hover {
  background-color: #FBF9F5;
}

.faq-icon-toggle {
  width: 22px;
  height: 22px;
  color: var(--gold-600);
  transition: transform var(--transition-fast);
  flex-shrink: 0;
}

.faq-item[open] .faq-icon-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 28px 24px;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* --------------------------------------------------------------------------
   14. CTA FINAL
   -------------------------------------------------------------------------- */
.final-cta-section {
  padding-block: 40px;
  background-color: var(--ivory);
}

.final-cta-container {
  background-color: var(--navy-950);
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: 28% 46% 26%;
  align-items: center;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(9, 37, 58, 0.2);
}

.final-cta-image {
  height: 100%;
  min-height: 280px;
  position: relative;
}

.final-cta-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85) contrast(1.05);
}

.final-cta-content {
  padding: 56px 44px;
  color: var(--white);
}

.final-cta-eyebrow {
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 12px;
  display: block;
}

.final-cta-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.2vw, 2.9rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 14px;
}

.final-cta-desc {
  font-size: 1rem;
  color: #C0D0DE;
  line-height: 1.55;
  margin-bottom: 28px;
}

.final-cta-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.final-cta-link-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--gold-light);
  border-bottom: 1px solid transparent;
  padding-block: 4px;
  transition: all var(--transition-fast);
}

.final-cta-link-secondary:hover {
  border-bottom-color: var(--gold-light);
  color: var(--white);
}

.final-cta-features {
  padding: 48px 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-left: 1px solid rgba(214, 180, 125, 0.15);
}

.final-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-on-dark);
  font-size: 0.88rem;
  font-weight: 500;
}

.final-feature-icon {
  width: 20px;
  height: 20px;
  color: var(--gold-400);
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   15. FOOTER INSTITUCIONAL
   -------------------------------------------------------------------------- */
.site-footer {
  background-color: var(--white);
  border-top: var(--border-subtle);
  padding-top: 60px;
  padding-bottom: 36px;
}

.footer-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 28px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--sand);
}

/* Marca no Footer */
.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-brand .brand-monogram {
  border-color: var(--gold-500);
  color: var(--gold-600);
}

.footer-brand .brand-name {
  color: var(--navy-900);
}

.footer-brand .brand-subtitle {
  color: var(--gold-600);
}

.footer-brand .brand-tagline {
  color: var(--text-muted);
}

/* Contatos no Footer */
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--navy-900);
  font-weight: 500;
}

.footer-contact-icon {
  width: 18px;
  height: 18px;
  color: var(--gold-600);
  flex-shrink: 0;
}

/* Redes Sociais */
.footer-socials {
  display: flex;
  align-items: center;
  gap: 14px;
}

.social-icon-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--sand-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-900);
  transition: all var(--transition-fast);
}

.social-icon-btn:hover {
  background-color: var(--navy-900);
  color: var(--white);
  border-color: var(--navy-900);
}

.social-icon-btn svg {
  width: 18px;
  height: 18px;
}

.footer-quote {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--gold-600);
  text-align: right;
}

/* Linha Inferior do Footer */
.footer-bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 24px;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.footer-legal-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-legal-links a:hover {
  color: var(--navy-900);
}

/* --------------------------------------------------------------------------
   16. RESPONSIVIDADE & MEDIA QUERIES
   -------------------------------------------------------------------------- */

/* TABLET (max-width: 1024px) */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 55% 45%;
    gap: 24px;
    min-height: auto;
  }

  .hero-editorial-card {
    right: 16px;
    top: 16px;
    padding: 14px 18px;
    max-width: 210px;
  }

  .trust-bar-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    padding: 28px 24px;
  }

  .trust-item:nth-child(2)::after {
    display: none;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .about-credentials-col {
    grid-column: span 2;
    margin-top: 12px;
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonial-card:last-child {
    grid-column: span 2;
  }

  .final-cta-container {
    grid-template-columns: 1fr;
  }

  .final-cta-image {
    height: 220px;
    min-height: auto;
  }

  .final-cta-features {
    border-left: none;
    border-top: 1px solid rgba(214, 180, 125, 0.15);
    padding: 32px 44px;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}

/* MOBILE (< 768px) */
@media (max-width: 768px) {
  .container, .container-wide {
    padding-inline: 20px;
  }

  .site-header {
    height: 70px;
  }

  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: var(--navy-950);
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 24px;
    gap: 20px;
    border-top: 1px solid rgba(214, 180, 125, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transform: translateY(-120%);
    transition: transform var(--transition-smooth);
  }

  .nav-menu.active {
    transform: translateY(0);
  }

  .mobile-toggle {
    display: block;
  }

  .header-cta .btn {
    padding: 8px 14px;
    font-size: 0.82rem;
  }

  .hero-section {
    padding-top: 36px;
    padding-bottom: 48px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .hero-content {
    order: 1;
    padding-right: 0;
  }

  .hero-visual {
    order: 2;
  }

  .hero-image-wrapper img {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .hero-editorial-card {
    position: relative;
    top: auto;
    right: auto;
    margin-top: 14px;
    margin-inline: 0;
    max-width: 100%;
    background: var(--navy-950);
  }

  .hero-trust-badges {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .trust-bar-section {
    margin-top: 0;
    padding-block: 16px;
  }

  .trust-bar-container {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 24px 20px;
  }

  .trust-item::after {
    display: none !important;
  }

  .services-section,
  .about-section,
  .process-section,
  .testimonials-section,
  .faq-section {
    padding-block: var(--section-padding-mobile);
  }

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

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

  .about-credentials-col {
    grid-column: span 1;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  .testimonial-card:last-child {
    grid-column: span 1;
  }

  .faq-header-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .final-cta-content {
    padding: 36px 24px;
  }

  .final-cta-features {
    padding: 24px;
    flex-direction: column;
    gap: 14px;
  }

  .footer-top-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .footer-quote {
    text-align: left;
  }

  .footer-bottom-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

/* --------------------------------------------------------------------------
   17. ANIMAÇÕES DE ROLAGEM BIDIRECIONAIS (Scroll Reveal)
   -------------------------------------------------------------------------- */
[data-reveal] {
  opacity: 0;
  transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

/* Variações de Entrada */
[data-reveal="fade-up"] {
  transform: translateY(32px);
}

[data-reveal="fade-down"] {
  transform: translateY(-32px);
}

[data-reveal="fade-left"] {
  transform: translateX(-38px);
}

[data-reveal="fade-right"] {
  transform: translateX(38px);
}

[data-reveal="fade"] {
  transform: scale(0.97);
}

/* Estado Ativado (visível ao descer e reaparecendo ao subir) */
[data-reveal].is-revealed {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}

/* Delays escalonados para cards em sequência */
[data-delay="100"] { transition-delay: 100ms; }
[data-delay="200"] { transition-delay: 200ms; }
[data-delay="300"] { transition-delay: 300ms; }
[data-delay="400"] { transition-delay: 400ms; }

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
