/* ==========================================================================
   IDENTIDADE VISUAL & DESIGN SYSTEM - RAYANE BRAGA ADVOCACIA
   Paleta Oficial:
   - Primária (Bordô Escuro): #4D0E13
   - Fundo Profundo (Quase Preto Avinhado): #460D12
   - Destaque / Botões CTA: bordô #4D0E13 sobre neutros
   - Fundo Claro / Off-White: #FAF9F8 (neutro derivado de #DCDADA)
   - Linhas e Textos Secundários: #8C8B89
   - Branco Puro: #FFFFFF
   - Corpo de texto escuro: #231F20
   ========================================================================== */

:root {
  --color-primary: #4D0E13;
  --color-primary-dark: #460D12;
  --color-primary-light: #6A1A22;
  --color-accent: #4D0E13;
  --color-accent-hover: #3A0A0E;
  --color-accent-light: #F1F0EF;
  /* Neutros de destaque (antes dourados) */
  --color-gold: #DCDADA;
  --color-gold-deep: #4D0E13;
  --color-gold-soft: #E9E6E4;
  --color-gold-light: #F1F0EF;
  --color-bg-light: #460D12;
  --color-bg-alt: #3B0B0F;
  --color-bg-stone: #DCDADA;
  --color-stone-card: #FFFFFF;
  --color-card-bg: #551318;
  --color-card-bg-hover: #5E161C;
  --color-border: rgba(220, 218, 218, 0.20);
  --color-border-subtle: rgba(220, 218, 218, 0.12);
  --color-heading: #F4F2F1;
  --color-text-main: #EFE8E4;
  --color-text-muted: #C9C0BB;
  --color-text-light: #FFFFFF;
  --color-taupe: #A69C97;
  --color-whatsapp: #25D366;
  --color-whatsapp-dark: #1EBE5D;

  --font-heading: 'Libre Baskerville', 'Times New Roman', Georgia, serif;
  --font-body: 'Source Sans 3', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', sans-serif;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.18);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.28);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.38);
  --shadow-hover: 0 20px 48px rgba(0, 0, 0, 0.45);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-bounce: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Reset e Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--color-text-main);
  background-color: var(--color-bg-light);
  line-height: 1.65;
  overflow-x: hidden;
}

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

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font-body);
}

/* Tipografia */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-heading);
  font-weight: 700;
  line-height: 1.25;
}

h1 {
  font-size: clamp(1.95rem, 3.6vw + 0.9rem, 3.05rem);
  letter-spacing: -0.01em;
}

h2 {
  font-size: clamp(1.65rem, 2.6vw + 0.5rem, 2.3rem);
  letter-spacing: -0.005em;
}

h3 {
  font-size: clamp(1.2rem, 1.7vw + 0.2rem, 1.5rem);
}

p {
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--color-text-muted);
}

strong {
  font-weight: 600;
  color: var(--color-gold-soft);
}

.highlight-text {
  color: var(--color-gold-soft);
  font-weight: 600;
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.section-spacing {
  padding-top: 5.5rem;
  padding-bottom: 5.5rem;
}

@media (max-width: 768px) {
  .section-spacing {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }
}

/* Badges e Tags */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1.1rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.badge-primary {
  background-color: rgba(220, 218, 218, 0.10);
  color: var(--color-gold-soft);
  border: 1px solid rgba(220, 218, 218, 0.28);
}

.badge-accent {
  background-color: rgba(255, 255, 255, 0.06);
  color: #DCDADA;
  border: 1px solid rgba(230, 206, 220, 0.25);
}

.badge-light {
  background-color: rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Botões */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.95rem 1.85rem;
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.btn-primary {
  background-color: var(--color-whatsapp);
  color: #FFFFFF;
}

.btn-primary:hover {
  background-color: var(--color-whatsapp-dark);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.32);
}

.btn-outline {
  background-color: transparent;
  color: var(--color-gold-soft);
  border: 1.5px solid rgba(220, 218, 218, 0.55);
}

.btn-outline:hover {
  background-color: rgba(220, 218, 218, 0.10);
  border-color: var(--color-gold-soft);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background-color: var(--color-whatsapp);
  color: #FFFFFF;
}

.btn-whatsapp:hover {
  background-color: var(--color-whatsapp-dark);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.35);
}

.btn-sm {
  padding: 0.6rem 1.25rem;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 1.15rem 2.2rem;
  font-size: 1.05rem;
}

.btn-full {
  width: 100%;
}

/* Micro-animação de pulso sutil no botão de WhatsApp */
@keyframes pulse-subtle {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.pulse-cta {
  animation: pulse-subtle 2.5s infinite;
}

/* ==========================================================================
   HEADER FIXO
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(70, 13, 18, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border-subtle);
  transition: var(--transition-smooth);
}

.site-header.scrolled {
  background-color: rgba(59, 11, 15, 0.98);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

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

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.brand-monogram {
  width: 42px;
  height: 42px;
  background-color: #5C1519;
  color: var(--color-gold-soft);
  border-radius: 8px;
  border: 1px solid rgba(220, 218, 218, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}

.brand-name-group {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-gold-soft);
  letter-spacing: 0.08em;
  line-height: 1.1;
}

.brand-subtitle {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--color-taupe);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: #E4DCD7;
  position: relative;
  padding: 0.4rem 0;
}

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

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

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  z-index: 1001;
}

.mobile-toggle span {
  width: 24px;
  height: 2px;
  background-color: var(--color-gold-soft);
  transition: var(--transition-smooth);
}

/* Menu Mobile */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(45, 8, 11, 0.97);
  backdrop-filter: blur(16px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-nav-overlay.active {
  display: flex;
  opacity: 1;
  pointer-events: all;
}

.mobile-nav-link {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: #FFFFFF;
  font-weight: 500;
}

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

@media (max-width: 992px) {
  .nav-desktop {
    display: none;
  }
  .header-actions .btn-header {
    display: none;
  }
  .mobile-toggle {
    display: flex;
  }
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  padding-top: 130px;
  padding-bottom: 5rem;
  background: linear-gradient(180deg, #4D0E13 0%, #460D12 100%);
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.hero-title {
  margin-top: 0.4rem;
  color: var(--color-heading);
}

.hero-subtitle {
  font-size: 1.15rem;
  line-height: 1.7;
  color: #DCD4CF;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.8rem;
}

.hero-trust-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: 1.8rem;
  padding-top: 1.8rem;
  border-top: 1px solid rgba(220, 218, 218, 0.18);
}

.trust-item {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.trust-icon-box {
  width: 32px;
  height: 32px;
  color: var(--color-gold-soft);
  margin-bottom: 0.2rem;
}

.trust-item strong {
  font-size: 0.9rem;
  color: var(--color-heading);
  line-height: 1.3;
}

.trust-item span {
  font-size: 0.78rem;
  color: var(--color-taupe);
  line-height: 1.3;
}

.hero-image-wrapper {
  position: relative;
}

.hero-image-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 3px solid rgba(220, 218, 218, 0.35);
}

.hero-image-card img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center 30%;
  transition: transform 0.6s ease;
}

.hero-image-card:hover img {
  transform: scale(1.02);
}

.hero-floating-card {
  position: absolute;
  bottom: 24px;
  left: -20px;
  background: rgba(45, 8, 11, 0.90);
  backdrop-filter: blur(10px);
  padding: 1rem 1.4rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border-left: 4px solid var(--color-gold);
  max-width: 270px;
}

.floating-card-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--color-gold-soft);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.floating-card-text {
  font-size: 0.85rem;
  color: var(--color-text-main);
  margin-top: 0.2rem;
  line-height: 1.3;
}

@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .hero-floating-card {
    left: 10px;
    bottom: 10px;
  }
  .hero-image-card img {
    height: 420px;
  }
  .hero-trust-badges {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

/* ==========================================================================
   SEÇÃO ACOLHIMENTO / DORES
   ========================================================================== */
.pain-section {
  background-color: var(--color-bg-stone);
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 740px;
  margin: 0 auto 3.5rem auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
}

.section-header p {
  font-size: 1.15rem;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.pain-card {
  background-color: var(--color-card-bg);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-md);
  padding: 2rem 1.6rem;
  position: relative;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pain-card:hover {
  transform: translateY(-4px);
  border-color: rgba(220, 218, 218, 0.38);
  box-shadow: var(--shadow-md);
  background-color: var(--color-card-bg-hover);
}

.pain-quote-icon {
  color: var(--color-gold);
  opacity: 0.75;
  width: 28px;
  height: 28px;
}

.pain-quote {
  font-family: var(--font-heading);
  font-size: 1.02rem;
  color: var(--color-heading);
  font-style: italic;
  line-height: 1.4;
}

.pain-desc {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  line-height: 1.55;
}

.pain-banner {
  margin-top: 3.5rem;
  background: linear-gradient(135deg, var(--color-accent) 0%, #3B0B0F 100%);
  color: #FFFFFF;
  border: 1px solid rgba(220, 218, 218, 0.25);
  border-radius: var(--radius-lg);
  padding: 2.5rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  box-shadow: var(--shadow-lg);
}

.pain-banner-text h3 {
  color: #FFFFFF;
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}

.pain-banner-text p {
  color: #E6E1E0;
  font-size: 1rem;
  margin: 0;
}

@media (max-width: 860px) {
  .pain-banner {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1.5rem;
  }
}

/* ==========================================================================
   SEÇÃO SERVIÇOS (3 CARDS EDUCATIVOS)
   ========================================================================== */
.services-section {
  background-color: var(--color-primary);
  position: relative;
}

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

.service-card {
  background-color: var(--color-card-bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-gold) 100%);
  opacity: 0;
  transition: var(--transition-smooth);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(220, 218, 218, 0.38);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background-color: rgba(220, 218, 218, 0.12);
  color: var(--color-gold-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

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

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--color-heading);
}

.service-tagline {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-gold-soft);
  margin-bottom: 1.5rem;
}

.service-block-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.service-subblock {
  border-left: 2px solid var(--color-border);
  padding-left: 1rem;
  transition: var(--transition-smooth);
}

.service-card:hover .service-subblock {
  border-left-color: var(--color-gold);
}

.service-subblock strong {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-gold-soft);
  margin-bottom: 0.25rem;
}

.service-subblock p {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
  }
}

/* ==========================================================================
   SEÇÃO COMO FUNCIONA O ATENDIMENTO
   ========================================================================== */
.workflow-section {
  background-color: var(--color-bg-light);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.8rem;
  position: relative;
}

.step-card {
  background-color: var(--color-card-bg);
  border-radius: var(--radius-md);
  padding: 2.2rem 1.6rem;
  border: 1px solid var(--color-border-subtle);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: var(--transition-smooth);
}

.step-card:hover {
  transform: translateY(-4px);
  background-color: var(--color-card-bg-hover);
  box-shadow: var(--shadow-md);
  border-color: rgba(220, 218, 218, 0.35);
}

.step-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(220, 218, 218, 0.35);
  line-height: 1;
}

.step-card h4 {
  font-size: 1.1rem;
  color: var(--color-heading);
  font-weight: 600;
}

.step-card p {
  font-size: 0.92rem;
  line-height: 1.55;
}

@media (max-width: 992px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .steps-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   SEÇÃO QUEM VAI TE ATENDER (SOBRE)
   ========================================================================== */
.about-section {
  background-color: var(--color-bg-stone);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
  align-items: center;
}

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

.about-image-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 3px solid rgba(220, 218, 218, 0.35);
}

.about-image-card img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  object-position: center 26%;
}

.about-experience-badge {
  position: absolute;
  bottom: 24px;
  right: -20px;
  background: linear-gradient(135deg, #5C1519 0%, #3B0B0F 100%);
  color: #FFFFFF;
  border: 1px solid rgba(220, 218, 218, 0.3);
  padding: 1.2rem 1.6rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  text-align: center;
}

.about-experience-badge strong {
  display: block;
  font-size: 1.6rem;
  font-family: var(--font-heading);
  color: #FFFFFF;
  border-bottom: 1px solid rgba(220, 218, 218, 0.4);
  padding-bottom: 0.2rem;
  margin-bottom: 0.2rem;
  line-height: 1.1;
}

.about-experience-badge span {
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-gold-soft);
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.about-bio {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-bio p {
  font-size: 1.02rem;
  line-height: 1.7;
}

.about-pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
  margin-top: 0.5rem;
}

.pillar-item {
  background-color: var(--color-card-bg);
  padding: 1.2rem 1.4rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}

.pillar-icon {
  color: var(--color-gold-soft);
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}

.pillar-text strong {
  display: block;
  font-size: 0.95rem;
  color: var(--color-heading);
  margin-bottom: 0.2rem;
}

.pillar-text span {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.4;
  display: block;
}

@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .about-experience-badge {
    right: 10px;
    bottom: 10px;
  }
  .about-image-card img {
    height: 440px;
  }
}

@media (max-width: 600px) {
  .about-pillars {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   SEÇÃO DOCUMENTOS NECESSÁRIOS
   ========================================================================== */
.docs-section {
  background-color: var(--color-primary);
}

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

.doc-group-card {
  background-color: var(--color-card-bg);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-md);
  padding: 2.2rem 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.doc-group-header {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--color-border);
}

.doc-group-header svg {
  width: 24px;
  height: 24px;
  color: var(--color-gold-soft);
}

.doc-group-header h4 {
  font-size: 1.05rem;
  color: var(--color-heading);
}

.doc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.doc-list li {
  font-size: 0.92rem;
  color: var(--color-text-main);
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  line-height: 1.45;
}

.doc-list li svg {
  width: 18px;
  height: 18px;
  color: var(--color-whatsapp);
  flex-shrink: 0;
  margin-top: 2px;
}

.docs-comfort-box {
  margin-top: 2.5rem;
  background-color: rgba(220, 218, 218, 0.08);
  border: 1.5px dashed rgba(220, 218, 218, 0.35);
  border-radius: var(--radius-md);
  padding: 1.8rem 2.2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.docs-comfort-icon {
  width: 42px;
  height: 42px;
  color: var(--color-gold-soft);
  flex-shrink: 0;
}

.docs-comfort-text strong {
  font-size: 1.05rem;
  color: var(--color-gold-soft);
  display: block;
  margin-bottom: 0.3rem;
}

.docs-comfort-text p {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  margin: 0;
}

@media (max-width: 992px) {
  .docs-grid {
    grid-template-columns: 1fr;
  }
  .docs-comfort-box {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
  }
}

/* ==========================================================================
   SEÇÃO PERGUNTAS FREQUENTES (FAQ ACCORDION)
   ========================================================================== */
.faq-section {
  background-color: var(--color-bg-light);
}

.faq-accordion {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background-color: var(--color-card-bg);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-item.active {
  border-color: rgba(220, 218, 218, 0.42);
  box-shadow: var(--shadow-sm);
}

.faq-trigger {
  width: 100%;
  text-align: left;
  padding: 1.4rem 1.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  background: none;
  border: none;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-heading);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.faq-trigger:hover {
  color: var(--color-gold-soft);
}

.faq-icon {
  width: 24px;
  height: 24px;
  color: var(--color-gold-soft);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  color: var(--color-gold);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.faq-body {
  padding: 0 1.8rem 1.6rem 1.8rem;
  font-size: 0.98rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  border-top: 1px solid rgba(220, 218, 218, 0.14);
  padding-top: 1rem;
}

/* ==========================================================================
   SEÇÃO DEPOIMENTOS & COMPROMISSOS
   ========================================================================== */
.testimonials-section {
  background-color: var(--color-bg-stone);
}

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

.testimonial-card {
  background-color: var(--color-card-bg);
  border-radius: var(--radius-md);
  padding: 2.2rem 1.8rem;
  border: 1px solid var(--color-border-subtle);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
  transition: var(--transition-smooth);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  background-color: var(--color-card-bg-hover);
}

.testimonial-text {
  font-size: 0.96rem;
  color: var(--color-text-main);
  line-height: 1.6;
  font-style: italic;
  position: relative;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding-top: 1rem;
  border-top: 1px solid var(--color-border);
}

.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: rgba(220, 218, 218, 0.12);
  color: var(--color-gold-soft);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
}

.author-info strong {
  display: block;
  font-size: 0.92rem;
  color: var(--color-heading);
}

.author-info span {
  font-size: 0.78rem;
  color: var(--color-taupe);
}

@media (max-width: 992px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
  }
}

/* ==========================================================================
   CTA FINAL SECTION
   ========================================================================== */
.final-cta-section {
  background-color: var(--color-primary);
  color: #FFFFFF;
  text-align: center;
  padding-top: 5.5rem;
  padding-bottom: 5.5rem;
  position: relative;
  overflow: hidden;
}

.final-cta-content {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.final-cta-content h2 {
  color: #FFFFFF;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.final-cta-content p {
  color: #E6E1E0;
  font-size: 1.15rem;
  line-height: 1.7;
}

.cta-actions-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  margin-top: 0.8rem;
}

.cta-micro-copy {
  font-size: 0.82rem;
  color: var(--color-gold-soft);
}

/* ==========================================================================
   RODAPÉ (FOOTER) & COMPLIANCE OAB
   ========================================================================== */
.site-footer {
  background-color: var(--color-primary-dark);
  color: #DCDADA;
  border-top: 2px solid var(--color-gold);
  padding-top: 4.5rem;
  padding-bottom: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr 1fr;
  gap: 3.5rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.footer-brand-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--color-gold-soft);
}

.footer-brand-sub {
  font-size: 0.82rem;
  color: var(--color-taupe);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-desc {
  font-size: 0.92rem;
  color: #DCDADA;
  line-height: 1.6;
}

.footer-col h4 {
  font-size: 1rem;
  color: #FFFFFF;
  margin-bottom: 1.2rem;
  letter-spacing: 0.03em;
}

.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links-list a {
  font-size: 0.9rem;
  color: #DCDADA;
}

.footer-links-list a:hover {
  color: var(--color-gold-soft);
  padding-left: 4px;
}

.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: #DCDADA;
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  color: var(--color-gold-soft);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-bottom {
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.oab-disclaimer-box {
  background-color: rgba(0, 0, 0, 0.25);
  border-radius: var(--radius-sm);
  padding: 1.2rem 1.5rem;
  font-size: 0.82rem;
  color: #C6C2C0;
  line-height: 1.6;
  border-left: 3px solid var(--color-gold);
}

.footer-credits {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: var(--color-taupe);
}

@media (max-width: 992px) {
  .footer-top-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .footer-credits {
    flex-direction: column;
    gap: 0.8rem;
    text-align: center;
  }
}

/* ==========================================================================
   BOTÃO FLUTUANTE WHATSAPP
   ========================================================================== */
.floating-whatsapp {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background-color: var(--color-whatsapp);
  color: #FFFFFF;
  padding: 0.85rem 1.4rem;
  border-radius: var(--radius-full);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
  font-weight: 600;
  font-size: 0.92rem;
  transition: var(--transition-smooth);
}

.floating-whatsapp:hover {
  background-color: var(--color-whatsapp-dark);
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 14px 36px rgba(37, 211, 102, 0.5);
  color: #FFFFFF;
}

.floating-whatsapp svg {
  width: 24px;
  height: 24px;
}

@media (max-width: 600px) {
  .floating-whatsapp {
    bottom: 20px;
    right: 20px;
    padding: 0.8rem;
    border-radius: 50%;
    width: 56px;
    height: 56px;
    justify-content: center;
  }
  .floating-whatsapp span {
    display: none;
  }
}

/* ==========================================================================
   MODAL LGPD & POLÍTICA DE PRIVACIDADE
   ========================================================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.modal-overlay.active {
  display: flex;
}

.modal-content {
  background: #4D0E13;
  border: 1px solid rgba(220, 218, 218, 0.22);
  border-radius: var(--radius-lg);
  max-width: 700px;
  width: 100%;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.modal-header {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--color-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header h3 {
  font-size: 1.3rem;
  color: var(--color-heading);
}

.modal-close-btn {
  font-size: 1.5rem;
  color: var(--color-taupe);
  transition: var(--transition-smooth);
  background: none;
  border: none;
  cursor: pointer;
}

.modal-body {
  padding: 2rem;
  overflow-y: auto;
  font-size: 0.92rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.modal-body h4 {
  font-size: 1.05rem;
  color: var(--color-gold-soft);
  margin-top: 0.5rem;
}


/* ==========================================================================
   SEÇÕES CLARAS (#DCDADA) — INVERSÃO DE CORES
   Aplica-se a: Acolhimento/Dores, Sobre, Depoimentos
   ========================================================================== */
.pain-section h2,
.pain-section h3,
.pain-section h4,
.about-section h2,
.about-section h3,
.about-section h4,
.testimonials-section h2,
.testimonials-section h3,
.testimonials-section h4 {
  color: var(--color-primary);
}

.pain-section .section-header p,
.about-section p,
.testimonials-section .section-header p {
  color: #55504E;
}

.pain-section strong,
.about-section strong,
.testimonials-section strong {
  color: var(--color-primary);
}

.pain-section .badge-primary,
.about-section .badge-primary,
.testimonials-section .badge-primary {
  background-color: rgba(77, 14, 19, 0.08);
  color: var(--color-primary);
  border-color: rgba(77, 14, 19, 0.2);
}

.pain-section .badge-accent,
.about-section .badge-accent,
.testimonials-section .badge-accent {
  background-color: rgba(77, 14, 19, 0.08);
  color: var(--color-accent);
  border-color: rgba(77, 14, 19, 0.25);
}

.pain-section .btn-primary,
.about-section .btn-primary,
.testimonials-section .btn-primary {
  background-color: var(--color-whatsapp);
  color: #FFFFFF;
}

.pain-section .btn-primary:hover,
.about-section .btn-primary:hover,
.testimonials-section .btn-primary:hover {
  background-color: var(--color-whatsapp-dark);
  color: #FFFFFF;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}

.pain-section .btn-outline,
.about-section .btn-outline,
.testimonials-section .btn-outline {
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.pain-section .btn-outline:hover,
.about-section .btn-outline:hover,
.testimonials-section .btn-outline:hover {
  background-color: rgba(77, 14, 19, 0.07);
}

/* Cards nas seções claras */
.pain-section .pain-card,
.about-section .pillar-item,
.testimonials-section .testimonial-card {
  background-color: var(--color-stone-card);
  border-color: rgba(77, 14, 19, 0.1);
}

.pain-section .pain-card:hover,
.testimonials-section .testimonial-card:hover {
  background-color: #FFFFFF;
  border-color: rgba(77, 14, 19, 0.28);
  box-shadow: 0 8px 24px rgba(77, 14, 19, 0.12);
}

.pain-section .pain-quote-icon {
  color: var(--color-gold-deep);
  opacity: 0.85;
}

.pain-section .pain-desc {
  color: #5A5553;
}

.about-section .pillar-icon {
  color: var(--color-gold-deep);
}

.about-section .pillar-text span {
  color: #5A5553;
}

.about-section .about-image-card {
  border-color: #FFFFFF;
}

.testimonials-section .testimonial-text {
  color: #3B3736;
}

.testimonials-section .author-avatar {
  background-color: rgba(220, 218, 218, 0.14);
  color: var(--color-gold-deep);
}

.testimonials-section .author-author,
.testimonials-section .author-info span {
  color: #6E6A67;
}

.testimonials-section .testimonial-author {
  border-top-color: rgba(77, 14, 19, 0.12);
}


/* A faixa de acolhimento é escura mesmo dentro da seção clara */
.pain-section .pain-banner-text h3 {
  color: #FFFFFF;
}

.pain-section .pain-banner-text p {
  color: #E6E1E0;
}


/* O selo da OAB é escuro mesmo dentro da seção clara */
.about-section .about-experience-badge strong {
  color: #FFFFFF;
}

.about-section .about-experience-badge span {
  color: #DCDADA;
}


/* ==========================================================================
   DEPOIMENTOS EM CARROSSEL CONTÍNUO
   ========================================================================== */
.testimonials-marquee {
  overflow: hidden;
  position: relative;
  width: 100%;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}

.testimonials-track {
  display: flex;
  align-items: stretch;
  gap: 1.5rem;
  width: max-content;
  animation: testimonials-scroll 90s linear infinite;
}

.testimonials-marquee:hover .testimonials-track {
  animation-play-state: paused;
}

@keyframes testimonials-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 0.75rem)); }
}

.testimonials-track .testimonial-card {
  width: 360px;
  flex: 0 0 360px;
}

.testimonial-stars {
  color: #E8A33D;
  font-size: 1rem;
  letter-spacing: 0.12em;
  line-height: 1;
}

.author-avatar {
  overflow: hidden;
  padding: 0;
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  border-radius: 50%;
}

@media (prefers-reduced-motion: reduce) {
  .testimonials-track {
    animation: none;
    overflow-x: auto;
  }
}

@media (max-width: 600px) {
  .testimonials-track .testimonial-card {
    width: 290px;
    flex: 0 0 290px;
  }
}


/* ==========================================================================
   SEÇÃO O ESCRITÓRIO
   ========================================================================== */
.office-section {
  background-color: var(--color-bg-light);
}

.office-marquee {
  overflow: hidden;
  position: relative;
  width: 100%;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
}

.office-track {
  display: flex;
  align-items: stretch;
  gap: 1.2rem;
  width: max-content;
  animation: office-scroll 70s linear infinite;
}

.office-marquee:hover .office-track {
  animation-play-state: paused;
}

@keyframes office-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 0.6rem)); }
}

.office-track .office-item {
  flex: 0 0 440px;
  width: 440px;
}

@media (prefers-reduced-motion: reduce) {
  .office-track {
    animation: none;
    overflow-x: auto;
  }
}

.office-item {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border-subtle);
  background-color: var(--color-card-bg);
  transition: var(--transition-smooth);
}

.office-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.office-item:hover {
  border-color: rgba(220, 218, 218, 0.45);
  box-shadow: var(--shadow-md);
}

.office-item:hover img {
  transform: scale(1.04);
}


@media (max-width: 992px) {
  .office-track .office-item {
    flex: 0 0 360px;
    width: 360px;
  }
}

@media (max-width: 600px) {
  .office-track .office-item {
    flex: 0 0 280px;
    width: 280px;
  }
  .office-item img {
    height: 210px;
  }
}


/* ==========================================================================
   EFEITO VISUAL DE FUNDO — CTA FINAL
   ========================================================================== */
.final-cta-section {
  isolation: isolate;
}

.final-cta-section::before {
  content: '';
  position: absolute;
  inset: -20%;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(38% 55% at 18% 22%, rgba(220, 218, 218, 0.16) 0%, rgba(220, 218, 218, 0) 65%),
    radial-gradient(45% 60% at 82% 78%, rgba(140, 139, 137, 0.20) 0%, rgba(140, 139, 137, 0) 68%),
    radial-gradient(60% 70% at 50% 120%, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0) 70%);
  animation: cta-drift 24s ease-in-out infinite alternate;
}

.final-cta-section::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.5;
  background-image: repeating-linear-gradient(
    115deg,
    rgba(255, 255, 255, 0.045) 0px,
    rgba(255, 255, 255, 0.045) 1px,
    rgba(255, 255, 255, 0) 1px,
    rgba(255, 255, 255, 0) 26px
  );
  -webkit-mask-image: radial-gradient(70% 70% at 50% 50%, #000 0%, transparent 78%);
  mask-image: radial-gradient(70% 70% at 50% 50%, #000 0%, transparent 78%);
}

@keyframes cta-drift {
  from { transform: translate3d(-2%, -1.5%, 0) scale(1); }
  to   { transform: translate3d(2.5%, 2%, 0) scale(1.06); }
}

.final-cta-content {
  position: relative;
  z-index: 1;
}

@media (prefers-reduced-motion: reduce) {
  .final-cta-section::before {
    animation: none;
  }
}


/* ==========================================================================
   REVELAÇÃO PROGRESSIVA NO SCROLL
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s cubic-bezier(0.22, 0.75, 0.25, 1),
              transform 0.75s cubic-bezier(0.22, 0.75, 0.25, 1);
  will-change: opacity, transform;
}

.reveal-visivel {
  opacity: 1;
  transform: none;
}

.hero-image-wrapper.reveal,
.about-image-wrapper.reveal {
  transform: translateY(28px) scale(0.98);
}

.hero-image-wrapper.reveal-visivel,
.about-image-wrapper.reveal-visivel {
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}


/* ==========================================================================
   AJUSTES DE RESPONSIVIDADE — TABLET E CELULAR
   ========================================================================== */
@media (max-width: 992px) {
  .header-container {
    height: 68px;
  }
  .hero-section {
    padding-top: 104px;
    padding-bottom: 3rem;
  }
  .brand-monogram {
    width: 38px;
    height: 38px;
    font-size: 1.1rem;
  }
  .brand-name {
    font-size: 0.95rem;
  }
  .brand-subtitle {
    font-size: 0.66rem;
  }
}

@media (max-width: 768px) {
  .container {
    padding-left: 1.15rem;
    padding-right: 1.15rem;
  }
  .section-header {
    margin-bottom: 2.4rem;
  }
  .section-header p,
  .hero-subtitle {
    font-size: 1.02rem;
  }
  .badge {
    font-size: 0.72rem;
    padding: 0.4rem 0.9rem;
    letter-spacing: 0.06em;
  }
  .btn {
    padding: 0.9rem 1.4rem;
    font-size: 0.92rem;
  }
  .btn-lg {
    padding: 1.05rem 1.5rem;
    font-size: 0.98rem;
  }
  .hero-cta-group .btn,
  .mobile-nav-overlay .btn {
    width: 100%;
  }
  .pain-banner {
    padding: 1.8rem 1.4rem;
  }
  .service-card,
  .doc-group-card,
  .step-card,
  .pain-card,
  .testimonial-card {
    padding: 1.7rem 1.35rem;
  }
  .faq-trigger {
    padding: 1.1rem 1.15rem;
    font-size: 0.98rem;
    gap: 0.8rem;
  }
  .faq-body {
    padding: 1rem 1.15rem 1.35rem 1.15rem;
    font-size: 0.94rem;
  }
  .final-cta-section {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }
  .site-footer {
    padding-top: 3rem;
  }
  .modal-header,
  .modal-body {
    padding: 1.2rem 1.3rem;
  }
}

@media (max-width: 600px) {
  html {
    font-size: 15px;
  }
  /* Evita que o botão flutuante cubra os CTAs no fim da página */
  .site-footer {
    padding-bottom: 5.5rem;
  }
  .hero-image-card img {
    height: 340px;
  }
  .hero-floating-card {
    position: static;
    max-width: 100%;
    margin-top: 0.9rem;
  }
  .about-image-card img {
    height: 360px;
  }
  .about-experience-badge {
    right: 12px;
    bottom: 12px;
    padding: 0.85rem 1.1rem;
  }
  .about-experience-badge strong {
    font-size: 1.25rem;
  }
  .hero-trust-badges {
    margin-top: 1.3rem;
    padding-top: 1.3rem;
  }
  .docs-comfort-box {
    gap: 0.9rem;
  }
  .footer-credits {
    font-size: 0.78rem;
  }
  .oab-disclaimer-box {
    padding: 1rem 1.1rem;
    font-size: 0.78rem;
  }
  /* Carrosséis com passo mais curto no celular */
  .testimonials-track {
    animation-duration: 65s;
  }
  .office-track {
    animation-duration: 50s;
  }
  .testimonials-marquee,
  .office-marquee {
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 4%, #000 96%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0, #000 4%, #000 96%, transparent 100%);
  }
}

@media (max-width: 380px) {
  .brand-subtitle {
    display: none;
  }
  .hero-image-card img {
    height: 300px;
  }
  .step-number {
    font-size: 2rem;
  }
}


/* Contatos clicáveis no rodapé */
.footer-contact-item a {
  color: #DCDADA;
  border-bottom: 1px solid transparent;
}

.footer-contact-item a:hover {
  color: #FFFFFF;
  border-bottom-color: rgba(220, 218, 218, 0.6);
}

.nav-link-instagram {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}


/* ==========================================================================
   PILARES DE CONFIANÇA — TRILHA (base)
   ========================================================================== */
.trust-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.trust-item-dup {
  display: none;
}

@keyframes trust-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(calc(-50% - 0.8rem)); }
}

/* ==========================================================================
   ORDEM DO HERO NO CELULAR
   texto → foto (com o card sobreposto) → botões → pilares rolando
   ========================================================================== */
@media (max-width: 992px) {
  .hero-grid {
    display: flex;
    flex-direction: column;
    gap: 1.15rem;
  }
  .hero-content {
    display: contents;
  }
  .hero-content > .badge { order: 1; justify-self: start; }
  .hero-title { order: 2; }
  .hero-subtitle { order: 3; }
  .hero-image-wrapper { order: 4; margin-top: 0.4rem; }
  .hero-cta-group { order: 5; margin-top: 1.6rem; }
  .hero-trust-badges { order: 6; margin-top: 0.6rem; }

  .hero-content > .badge {
    align-self: flex-start;
  }

  /* Card da citação sobreposto à foto, como no desktop */
  .hero-floating-card {
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: -18px;
    max-width: none;
    margin-top: 0;
  }
  .hero-image-wrapper {
    padding-bottom: 34px;
  }

  /* Pilares rolando na horizontal */
  .hero-trust-badges {
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
  }
  .trust-track {
    display: flex;
    width: max-content;
    gap: 1.6rem;
    animation: trust-scroll 14s linear infinite;
  }
  .trust-track .trust-item {
    flex: 0 0 220px;
    width: 220px;
  }
  .trust-item-dup {
    display: flex;
  }

  /* CTA da seção Sobre centralizado */
  .about-cta {
    display: flex;
    justify-content: center;
  }
}

@media (max-width: 600px) {
  /* sobrepõe o ajuste anterior que tirava o card de cima da foto */
  .hero-floating-card {
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: -16px;
    margin-top: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .trust-track {
    animation: none;
  }
}


/* Navegação rápida do rodapé em duas colunas */
.footer-links-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 1.5rem;
  row-gap: 0.7rem;
}

/* Foto do hero com mais presença no celular */
@media (max-width: 992px) {
  .hero-grid {
    align-items: stretch;
  }
  .hero-image-wrapper {
    align-self: stretch;
    width: 100%;
  }
  .hero-image-card img {
    height: 460px;
  }
}

@media (max-width: 600px) {
  .hero-image-card img {
    height: 430px;
  }
  .footer-links-list {
    column-gap: 1rem;
  }
}

@media (max-width: 380px) {
  .hero-image-card img {
    height: 380px;
  }
}
