:root {
  --navy-deep: #0A2347;
  --navy: #11315F;
  --orange: #F18A2C;
  --orange-hover: #e07a1e;
  --gray-light: #F4F5F7;
  --charcoal: #1F2937;
  --text-body: #3D4A60;
  --text-muted: #6B7790;
  --border: #E7E9EE;
  --font-main: 'Manrope', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  background: #fff;
  color: var(--navy-deep);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: var(--gray-light);
}

::-webkit-scrollbar-thumb {
  background: rgba(10, 35, 71, 0.28);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(10, 35, 71, 0.45);
}

/* Animations */
@keyframes lpFade {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes lpSlide {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulseGlow {
  0% {
    box-shadow: 0 10px 30px -8px rgba(37, 211, 102, .55);
  }

  50% {
    box-shadow: 0 10px 35px -2px rgba(37, 211, 102, .85);
  }

  100% {
    box-shadow: 0 10px 30px -8px rgba(37, 211, 102, .55);
  }
}

/* Tag / Badge */
.lp-tag {
  color: var(--orange);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 16px;
}

/* Buttons / CTA */
.lp-cta {
  font-family: inherit;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.2s ease;
  text-decoration: none;
  border: none;
  outline: none;
  white-space: nowrap;
}

.lp-cta:hover {
  transform: translateY(-2px);
  filter: brightness(0.96);
}

.lp-cta-sm {
  padding: 10px 18px;
  font-size: 14px;
}

.lp-cta-md {
  padding: 14px 26px;
  font-size: 15px;
}

.lp-cta-lg {
  padding: 18px 32px;
  font-size: 16px;
}

.lp-cta-primary {
  background: var(--orange);
  color: #fff;
  border: 1px solid var(--orange);
}

.lp-cta-ghost {
  background: transparent;
  color: var(--orange);
  border: 1px solid var(--orange);
}

.lp-cta-light {
  background: #fff;
  color: var(--navy-deep);
  border: 1px solid #fff;
}

.lp-cta-outline {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(4px);
}

.lp-cta-outline:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
}

.lp-cta-arrow {
  font-size: 1.1em;
  line-height: 1;
  transition: transform 0.2s ease;
}

.lp-cta:hover .lp-cta-arrow {
  transform: translateX(3px);
}

/* TopBar */
.top-bar {
  background: var(--navy-deep);
  color: #fff;
  font-size: 13px;
  padding: 10px 24px;
  text-align: center;
  letter-spacing: 0.01em;
  line-height: 1.4;
}

.top-bar strong {
  color: var(--orange);
}

/* Header & Nav */
.main-header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 50;
  transition: box-shadow 0.3s ease;
}

.main-header.scrolled {
  box-shadow: 0 4px 20px rgba(10, 35, 71, 0.08);
}

.header-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-img {
  height: 36px;
  width: auto;
}

.main-nav {
  display: flex;
  gap: 3px;
  margin-left: auto;
  align-items: center;
  flex-wrap: nowrap;
}

.nav-link {
  font-size: 12.25px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--text-body);
  padding: 6px 7px;
  border-radius: 4px;
  text-decoration: none;
  position: relative;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}

.nav-link:hover {
  background: var(--gray-light);
  color: var(--orange);
}

.nav-link.active {
  color: var(--navy);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 7px;
  right: 7px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
}

/* Dropdown Menu para Serviços */
.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  background: #fff;
  border-radius: 8px;
  padding: 8px 0;
  box-shadow: 0 12px 32px rgba(10, 35, 71, 0.15);
  border: 1px solid var(--border);
  z-index: 100;
  animation: lpSlide 0.2s ease;
}

.dropdown-menu-right {
  left: auto;
  right: 0;
  min-width: auto;
  width: max-content;
  padding: 3px 0;
  border-radius: 6px;
  box-shadow: 0 8px 20px rgba(10, 35, 71, 0.12);
}

.dropdown-menu-right .dropdown-item {
  padding: 6px 12px;
}

.nav-dropdown:hover .dropdown-menu {
  display: block;
}

/* Instagram Icon Link in Header Nav */
.nav-link-instagram {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-body);
  padding: 5px 6px;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.nav-link-instagram:hover {
  color: #E1306C;
  background: var(--gray-light);
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(225, 48, 108, 0.2);
}

/* Header CTAs - Botões Empilhados na mesma largura */
.header-ctas {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex-shrink: 0;
  width: 148px;
}

.soc-btn {
  background: var(--navy);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 5px 10px;
  border-radius: 4px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  white-space: nowrap;
  border: 1px solid var(--navy-deep);
  width: 100%;
  box-sizing: border-box;
  text-align: center;
}

.soc-btn:hover {
  background: var(--navy-deep);
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(10, 35, 71, 0.2);
}

.soc-btn-mobile {
  display: none;
}

/* Compact Atendimento Button */
.lp-cta-compact {
  padding: 5px 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-sizing: border-box;
  width: 100%;
  white-space: nowrap;
}

.dropdown-item {
  display: block;
  padding: 8px 14px;
  text-decoration: none;
  color: var(--navy-deep);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}

.dropdown-item:hover {
  background: var(--gray-light);
  color: var(--orange);
}

.dropdown-icon {
  font-size: 16px;
  flex-shrink: 0;
}

.dropdown-title {
  white-space: nowrap;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--navy-deep);
  cursor: pointer;
  padding: 4px;
}

/* Hero Section */
.hero-section {
  position: relative;
  overflow: hidden;
  background: var(--navy-deep);
  color: #fff;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(115deg, rgba(10, 35, 71, .88) 0%, rgba(10, 35, 71, .62) 50%, rgba(10, 35, 71, .32) 100%), url("images/foto-medico.jpg");
  background-size: cover;
  background-position: center;
}

.hero-container {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: 96px 32px 100px;
}

.hero-title {
  margin: 0 0 24px;
  font-size: 52px;
  line-height: 1.08;
  font-weight: 800;
  color: #fff;
  max-width: 920px;
  letter-spacing: -0.02em;
}

.hero-title .highlight {
  color: var(--orange);
}

.hero-subtitle {
  margin: 0 0 36px;
  font-size: 18px;
  line-height: 1.55;
  color: #D5DEEC;
  max-width: 720px;
  font-weight: 400;
}

.hero-subtitle strong {
  color: #fff;
  font-weight: 600;
}

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

.hero-link {
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  opacity: 0.85;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: opacity 0.2s;
}

.hero-link:hover {
  opacity: 1;
}

/* Trust Strip */
.trust-strip {
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.18);
  overflow: hidden;
}

.trust-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 16px 24px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.stat-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 12px;
  line-height: 1.35;
  font-weight: 500;
}

.stat-chip span {
  display: block;
}

.stat-chip-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Section Common */
.section-anchor {
  display: block;
  scroll-margin-top: 120px;
}

.main-footer {
  scroll-margin-top: 120px;
}

/* Section: Os Riscos */
.riscos-section {
  background: var(--navy);
  color: #fff;
  padding: 96px 32px;
  position: relative;
}

.riscos-container {
  max-width: 1080px;
  margin: 0 auto;
}

.section-title-lg {
  margin: 0 0 28px;
  font-size: 42px;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.section-desc-lg {
  max-width: 820px;
  font-size: 17px;
  line-height: 1.65;
  color: #B7C2D6;
  margin-bottom: 56px;
}

.section-desc-lg p {
  margin-bottom: 14px;
}

.section-desc-lg p:last-child {
  margin-bottom: 0;
}

.risk-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 48px;
}

.risk-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 3px solid var(--orange);
  padding: 24px 28px;
  border-radius: 8px;
  display: flex;
  gap: 18px;
  transition: transform 0.2s ease, background 0.2s ease;
}

.risk-card:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.07);
}

.risk-num {
  font-size: 32px;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
  flex-shrink: 0;
  font-variant-numeric: tabular-nums;
}

.risk-text {
  margin: 0;
  color: #D5DEEC;
  font-size: 15.5px;
  line-height: 1.55;
}

.risk-text strong {
  color: #fff;
}

/* Section: Método (Como Funciona) */
.metodo-section {
  background: #fff;
  padding: 96px 32px;
}

.metodo-container {
  max-width: 1280px;
  margin: 0 auto;
}

.metodo-header {
  max-width: 760px;
  margin-bottom: 56px;
}

.timeline-wrapper {
  position: relative;
}

.timeline-line {
  position: absolute;
  top: 86px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: repeating-linear-gradient(to right, #FFD9B5 0 8px, transparent 8px 16px);
  z-index: 0;
}

.timeline-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.method-card {
  background: #fff;
  border: 1px solid #E7E9EE;
  border-radius: 10px;
  padding: 32px 28px;
  position: relative;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.method-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(10, 35, 71, 0.08);
}

.method-card.method-card-1 {
  background: #F4F7FC;
  border-color: #D8E2F2;
}

.method-card.method-card-1 .method-icon {
  background: #E3ECF9;
  color: var(--navy);
}

.method-card.method-card-1 .method-num {
  color: var(--navy);
}

.method-card.method-card-2 {
  background: #FFF8F2;
  border-color: #FDE4D2;
}

.method-card.method-card-2 .method-icon {
  background: #FDE8D8;
  color: var(--orange);
}

.method-card.method-card-2 .method-num {
  color: var(--orange);
}

.method-card.method-card-3 {
  background: #F2FAF6;
  border-color: #D2EEDD;
}

.method-card.method-card-3 .method-icon {
  background: #D9F3E5;
  color: #198754;
}

.method-card.method-card-3 .method-num {
  color: #198754;
}

.method-icon {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  background: #FFF1E0;
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  font-size: 24px;
}

.method-num {
  font-size: 11px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.method-title {
  margin: 0 0 12px;
  font-size: 22px;
  font-weight: 700;
  color: var(--navy-deep);
  line-height: 1.2;
}

.method-desc {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text-body);
}

/* Box: O que você recebe */
.receive-box {
  margin-top: 64px;
  padding: 52px 56px;
  border-radius: 16px;
  display: flex;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
  background-image: linear-gradient(90deg, rgba(10, 35, 71, 0.94) 0%, rgba(10, 35, 71, 0.84) 55%, rgba(10, 35, 71, 0.25) 100%), url("images/fusao1.png");
  background-size: cover;
  background-position: center right;
  color: #fff;
  box-shadow: 0 20px 50px rgba(10, 35, 71, 0.2);
}

.receive-left-content {
  flex: 1 1 65%;
  max-width: 720px;
  z-index: 2;
}

.receive-right-image {
  flex: 1 1 35%;
  min-height: 360px;
}

.receive-title,
.practice-title {
  margin: 0 0 28px;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.25;
}

.receive-title {
  color: #fff;
}

.receive-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 24px;
}

.receive-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 8px 0;
  font-size: 14.5px;
  color: #E2E8F0;
  font-weight: 500;
}

.receive-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Box: Nossos Serviços (Transparente com Borda Laranja) */
.practice-box {
  margin-top: 36px;
  padding: 48px 56px;
  border-radius: 16px;
  border: 2px solid var(--orange);
  background: transparent;
  position: relative;
  transition: all 0.25s ease;
}

.practice-content {
  width: 100%;
}

.practice-title {
  color: var(--navy-deep);
  margin: 0;
}

.practice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 32px;
}

.practice-card {
  background: #fff;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 24px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(10, 35, 71, 0.03);
}

.practice-card:hover {
  transform: translateY(-2px);
  border-color: var(--orange);
  box-shadow: 0 8px 24px rgba(232, 93, 4, 0.08);
}

.practice-card-featured {
  grid-column: span 2;
}

.practice-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(232, 93, 4, 0.08);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.practice-card:hover .practice-card-icon {
  background: var(--orange);
  color: #fff;
}

.practice-card-body {
  flex: 1;
}

.practice-card-title {
  margin: 0 0 8px;
  font-size: 17px;
  font-weight: 700;
  color: var(--navy-deep);
  line-height: 1.3;
}

.practice-card-desc {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-body);
}

/* Practice Actions / Botão Largo de CTA */
.practice-actions {
  margin-top: 36px;
  display: flex;
  justify-content: center;
}

.practice-cta-btn {
  min-width: 380px;
  padding: 16px 36px;
  font-size: 15px;
  font-weight: 700;
  justify-content: center;
  border-radius: 8px;
}

/* Section: Por que a Atenta */
.atenta-section {
  background: var(--gray-light);
  padding: 96px 32px;
}

.atenta-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 64px;
  align-items: end;
}

.atenta-sticky {
  position: static;
}

.atenta-right-col {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.atenta-image-card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px -12px rgba(10, 35, 71, .25);
  aspect-ratio: 4/3;
  margin-top: 24px;
}

.atenta-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Video Card Simulation & Overlay */
.atenta-video-card {
  position: relative;
  cursor: pointer;
  background: #0A2347;
  display: block;
  user-select: none;
}

.atenta-video-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 22% center;
  display: block;
  transition: transform 0.35s ease, filter 0.3s ease;
}

.atenta-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 35, 71, 0.15) 0%, rgba(10, 35, 71, 0.6) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  transition: background 0.3s ease;
}

.atenta-video-card:hover .atenta-video-thumb {
  transform: scale(1.04);
  filter: brightness(1.05);
}

.atenta-video-card:hover .atenta-video-overlay {
  background: linear-gradient(180deg, rgba(10, 35, 71, 0.05) 0%, rgba(10, 35, 71, 0.45) 100%);
}

.video-play-btn {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(232, 93, 4, 0.5);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
}

.video-play-btn svg {
  margin-left: 3px;
}

.video-play-btn::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid var(--orange);
  opacity: 0.8;
  animation: playPulse 2s infinite ease-out;
}

@keyframes playPulse {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.25); opacity: 0.2; }
  100% { transform: scale(1.4); opacity: 0; }
}

.atenta-video-card:hover .video-play-btn {
  transform: scale(1.1);
  box-shadow: 0 14px 35px rgba(232, 93, 4, 0.7);
}

.video-play-badge {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(4px);
  color: var(--navy-deep);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
  letter-spacing: 0.02em;
}

/* Video Player Modal */
.modal-video-card {
  background: #000;
  border-radius: 12px;
  width: 100%;
  max-width: 900px;
  position: relative;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6);
  overflow: hidden;
  animation: lpSlide 0.25s ease;
}

.video-close-btn {
  position: absolute;
  top: 10px;
  right: 12px;
  z-index: 10;
  color: #fff;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  font-size: 24px;
  cursor: pointer;
  transition: background 0.2s;
}

.video-close-btn:hover {
  background: var(--orange);
  color: #fff;
}

.video-responsive-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  background: #000;
}

.video-responsive-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-modal-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  background: #111;
  color: #fff;
  font-size: 13px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.video-yt-direct-btn {
  color: var(--orange);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: opacity 0.2s;
}

.video-yt-direct-btn:hover {
  text-decoration: underline;
  opacity: 0.85;
}

.diff-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 28px;
  padding: 24px 0;
  border-bottom: 1px solid #E7E9EE;
  align-items: flex-start;
}

.diff-label-wrap {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.diff-check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.diff-title {
  margin: 0;
  font-size: 16.5px;
  font-weight: 700;
  color: var(--navy-deep);
  line-height: 1.35;
}

.diff-desc {
  margin: 0;
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.6;
}

/* Section: Para quem é */
.para-quem-section {
  background: var(--charcoal);
  color: #fff;
  padding: 96px 32px;
}

.para-quem-container {
  max-width: 1080px;
  margin: 0 auto;
}

.para-quem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 56px;
}

.para-quem-box {
  padding: 32px;
  border-radius: 10px;
}

.para-quem-box.sim {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
}

.para-quem-box.nao {
  background: rgba(255, 255, 255, .02);
  border: 1px solid rgba(255, 255, 255, .06);
}

.para-quem-box-title {
  margin: 0 0 20px;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
}

.para-quem-box.sim .para-quem-box-title {
  color: var(--orange);
}

.para-quem-box.nao .para-quem-box-title {
  color: #7A88A3;
}

.para-quem-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.para-quem-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 15.5px;
  line-height: 1.5;
}

.para-quem-box.sim .para-quem-item {
  color: #D5DEEC;
}

.para-quem-box.nao .para-quem-item {
  color: #9AA5BB;
}

.para-quem-bullet {
  font-size: 18px;
  line-height: 1;
  margin-top: 2px;
}

.para-quem-box.sim .para-quem-bullet {
  color: var(--orange);
}

.para-quem-box.nao .para-quem-bullet {
  color: #7A88A3;
}

/* Section: Depoimentos */
.depoimentos-section {
  background: #fff;
  padding: 96px 32px;
}

.depoimentos-container {
  max-width: 1280px;
  margin: 0 auto;
}

.depoimentos-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  gap: 32px;
  flex-wrap: wrap;
}

.rating-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 22px;
  background: var(--gray-light);
  border-radius: 10px;
}

.rating-score {
  font-size: 28px;
  font-weight: 800;
  color: var(--navy-deep);
}

.rating-stars {
  color: var(--orange);
  letter-spacing: 0.1em;
  font-size: 14px;
}

.rating-count {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}

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

.testimonial-card {
  background: #fff;
  border: 1px solid #E7E9EE;
  border-radius: 10px;
  padding: 32px 30px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  height: 100%;
}

.testimonial-quote {
  margin: 0;
  font-size: 16px;
  color: var(--navy-deep);
  line-height: 1.55;
  font-weight: 500;
  flex: 1;
}

.testimonial-author {
  border-top: 1px solid #E7E9EE;
  padding-top: 18px;
}

.author-name {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--navy-deep);
}

.author-role {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 2px;
}

/* Section: Google Reviews */
.google-reviews-section {
  padding: 72px 32px;
  background: #fff;
  color: var(--navy-deep);
}

.google-reviews-container {
  max-width: 1180px;
  margin: 0 auto;
}

.reviews-top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 16px;
}

.reviews-brand-info {
  display: flex;
  align-items: center;
  gap: 16px;
}

.google-icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #E7E9EE;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  color: #4285F4;
}

.reviews-nav-btns {
  display: flex;
  gap: 8px;
}

.reviews-nav-btn {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  cursor: pointer;
  background: #F4F5F7;
  border: 1px solid #E7E9EE;
  color: inherit;
  font-family: inherit;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.reviews-nav-btn:hover {
  background: #e5e7eb;
}

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

.review-card {
  padding: 24px 24px;
  background: #fff;
  border: 1px solid #E7E9EE;
  border-radius: 10px;
}

.review-user-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.review-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
}

.review-user-name {
  font-size: 14px;
  font-weight: 700;
}

.review-date {
  font-size: 12px;
  color: var(--text-muted);
}

.review-g-badge {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #E7E9EE;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: #4285F4;
}

.review-stars {
  color: var(--orange);
  font-size: 14px;
  margin-bottom: 10px;
  letter-spacing: 0.05em;
}

.review-text {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-body);
}

.reviews-footer-note {
  margin-top: 24px;
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
}

/* Section: FAQ */
.faq-section {
  background: var(--gray-light);
  padding: 96px 32px;
}

.faq-container {
  max-width: 880px;
  margin: 0 auto;
}

.faq-header {
  text-align: center;
  margin-bottom: 48px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  background: #fff;
  border: 1px solid #E7E9EE;
  border-radius: 8px;
  overflow: hidden;
}

.faq-question-btn {
  width: 100%;
  text-align: left;
  padding: 20px 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--navy-deep);
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #F4F5F7;
  color: var(--navy-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 600;
  flex-shrink: 0;
  transition: all 0.25s ease;
}

.faq-item.open .faq-icon {
  background: var(--orange);
  color: #fff;
  transform: rotate(45deg);
}

.faq-answer-wrapper {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-item.open .faq-answer-wrapper {
  max-height: 400px;
}

.faq-answer {
  padding: 0 24px 22px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-body);
}

/* Section: Localização & Map */
.localizacao-section {
  background: #fff;
  padding-top: 96px;
}

.localizacao-header {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px 40px;
}

.map-embed-wrapper {
  position: relative;
  width: 100%;
  height: 480px;
  background: #E5E3DF;
  overflow: hidden;
}

.map-embed-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* Footer */
.main-footer {
  background: var(--navy-deep);
  color: #fff;
  padding: 72px 32px 0;
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
}

.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.footer-logo {
  height: 52px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  margin-bottom: 0;
}

.footer-desc {
  font-size: 14px;
  color: #B7C2D6;
  line-height: 1.6;
  margin: 0;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: all 0.2s ease;
}

.social-link:hover {
  background: var(--orange);
  color: #fff;
  transform: translateY(-2px);
}

.footer-seals-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.footer-seal-card {
  width: 110px;
  height: 100px;
  background: #ffffff;
  border-radius: 12px;
  padding: 8px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  overflow: hidden;
  flex-shrink: 0;
}

.footer-seal-card:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

.footer-seal-img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.footer-seal-img.seal-iso {
  transform: scale(1.78);
}

.footer-seal-img.seal-abresst {
  max-height: 100%;
  transform: scale(1.18);
}

.footer-column-title {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin: 0 0 16px;
  font-weight: 700;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  color: #B7C2D6;
  line-height: 1.9;
}

.footer-text {
  font-size: 14px;
  color: #B7C2D6;
  line-height: 1.7;
  margin: 0;
}

.footer-tags {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-badge {
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #B7C2D6;
}

.footer-middle-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 28px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.middle-title {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #7A88A3;
  font-weight: 700;
  margin-bottom: 12px;
}

.seals-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.seal-item {
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.seal-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.seal-label {
  font-size: 12.5px;
  font-weight: 700;
  color: #fff;
}

.seal-sub {
  font-size: 11px;
  color: #9AA5BB;
}

.payments-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.payment-chip {
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  font-size: 12.5px;
  color: #D5DEEC;
  font-weight: 600;
}

.footer-bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 0 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #B7C2D6;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-bottom-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-privacy-link {
  color: #B7C2D6;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-privacy-link:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-divider {
  color: rgba(255, 255, 255, 0.25);
}

.footer-credits {
  color: #B7C2D6;
}

.footer-credits strong {
  font-weight: 700;
  color: #fff;
}

.footer-enm-link {
  color: var(--orange);
  text-decoration: underline;
  font-weight: 700;
  transition: opacity 0.2s;
}

.footer-enm-link:hover {
  opacity: 0.85;
}

/* Floating WhatsApp Action Speed-Dial */
.whatsapp-fab-container {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 95;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.fab-menu {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 12px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px) scale(0.95);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  pointer-events: none;
}

.whatsapp-fab-container:hover .fab-menu,
.whatsapp-fab-container.active .fab-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.fab-option {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: var(--navy-deep);
  padding: 10px 18px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(10, 35, 71, 0.18);
  border: 1px solid var(--border);
  transition: all 0.2s ease;
  white-space: nowrap;
}

.fab-option:hover {
  background: #25D366;
  color: #fff;
  border-color: #25D366;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.35);
}

.fab-option-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #25D366;
  transition: color 0.2s ease;
}

.fab-option:hover .fab-option-icon {
  color: #fff;
}

.fab-button {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px -8px rgba(37, 211, 102, .55), 0 4px 12px -2px rgba(0, 0, 0, .18);
  transition: transform 0.2s ease;
  animation: pulseGlow 3s infinite ease-in-out;
}

.fab-button:hover,
.whatsapp-fab-container.active .fab-button {
  transform: scale(1.08);
}

-out;
text-decoration: none;
}

.fab-button:hover {
  transform: scale(1.08);
}

/* Modal */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(10, 35, 71, 0.55);
  backdrop-filter: blur(4px);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: lpFade 0.25s ease;
}

.modal-backdrop.hidden {
  display: none;
}

.modal-card {
  background: #fff;
  border-radius: 12px;
  width: 100%;
  max-width: 540px;
  padding: 36px 40px;
  position: relative;
  box-shadow: 0 30px 80px -20px rgba(10, 35, 71, 0.5);
  animation: lpSlide 0.3s ease;
}

.modal-card.modal-card-lg {
  max-width: 760px;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  padding: 36px 40px;
}

.privacy-modal-header {
  margin-bottom: 16px;
}

.privacy-modal-logo {
  height: 38px;
  width: auto;
}

.privacy-modal-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--navy-deep);
  letter-spacing: 0.02em;
  margin: 0 0 4px;
}

.privacy-modal-date {
  font-size: 11.5px;
  font-weight: 700;
  color: #9AA5BB;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 14px;
}

.privacy-modal-body {
  overflow-y: auto;
  padding-right: 12px;
  font-size: 14px;
  line-height: 1.65;
  color: var(--charcoal);
  flex: 1;
}

.privacy-modal-body h4 {
  font-size: 15.5px;
  font-weight: 700;
  color: var(--navy-deep);
  margin: 22px 0 10px;
}

.privacy-modal-body ul {
  margin: 8px 0 16px 20px;
  padding: 0;
}

.privacy-modal-body li {
  margin-bottom: 6px;
}

.modal-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border-radius: 6px;
  border: 1px solid #E7E9EE;
  background: #fff;
  cursor: pointer;
  font-size: 18px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}

.modal-close-btn:hover {
  background: #F4F5F7;
}

/* Modal WhatsApp Buttons & Divider */
.modal-whatsapp-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 18px;
  margin-bottom: 20px;
}

.modal-wa-btn {
  background: #25D366;
  color: #fff;
  padding: 12px 14px;
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 700;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
  text-align: center;
}

.modal-wa-btn:hover {
  background: #20bd5a;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.35);
}

.modal-divider-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy-deep);
  margin: 20px 0 16px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}

.step-progress {
  display: flex;
  gap: 6px;
  margin-bottom: 28px;
}

.step-bar {
  flex: 1;
  height: 4px;
  border-radius: 2px;
  background: #E7E9EE;
  transition: background 0.3s;
}

.step-bar.active {
  background: var(--orange);
}

.form-field {
  display: block;
  margin-bottom: 14px;
}

.form-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-body);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}

.form-input {
  width: 100%;
  padding: 11px 14px;
  border-radius: 6px;
  border: 1px solid #D7DBE3;
  font-size: 14px;
  font-family: inherit;
  color: var(--navy-deep);
  outline: none;
  transition: border 0.15s;
}

.form-input:focus {
  border-color: var(--orange);
}

.modal-step-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
}

.btn-back {
  background: transparent;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-family: inherit;
  font-size: 14px;
}

.btn-back:hover {
  color: var(--navy-deep);
}

.modal-success {
  text-align: center;
  padding: 8px 0 4px;
}

.success-icon-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--orange);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

/* LGPD Floating Cookie Notice Popup (Bottom Left - Compact) */
.lgpd-popup {
  position: fixed;
  bottom: 18px;
  left: 18px;
  max-width: 310px;
  background: #fff;
  color: var(--navy-deep);
  border-radius: 10px;
  padding: 12px 16px;
  z-index: 90;
  box-shadow: 0 12px 32px rgba(10, 35, 71, 0.18);
  border: 1px solid var(--border);
  border-left: 4px solid var(--orange);
  animation: lpSlide 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
}

.lgpd-popup.hidden {
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  pointer-events: none;
}

.lgpd-popup-text {
  font-size: 12px;
  line-height: 1.45;
  color: var(--text-body);
  margin: 0 0 8px;
}

.lgpd-privacy-link {
  color: var(--orange);
  text-decoration: underline;
  font-weight: 600;
}

.lgpd-privacy-link:hover {
  color: var(--navy-deep);
}

.lgpd-popup-actions {
  display: flex;
  justify-content: flex-end;
}

.lgpd-popup-actions #btnAcceptLgpd {
  padding: 5px 14px;
  font-size: 12px;
  border-radius: 4px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 40px;
  }

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

  .atenta-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .atenta-sticky {
    position: static;
  }

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

  .footer-middle-bar {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .timeline-line {
    display: none;
  }

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

  .diff-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .diff-label-wrap {
    min-width: auto;
  }
}

@media (max-width: 900px) {
  .header-container {
    padding: 12px 20px;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav .nav-link,
  .main-nav .nav-link-instagram {
    width: 100%;
    box-sizing: border-box;
  }

  .main-nav .nav-dropdown {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
  }

  .main-nav .dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    padding: 4px 0 4px 12px;
    display: block;
    width: 100%;
    min-width: 0;
  }

  .main-nav .dropdown-item {
    padding: 6px 8px;
    font-size: 11px;
  }

  .mobile-menu-btn {
    display: block;
    margin-left: auto;
  }

  .header-ctas {
    display: none;
  }

  .soc-btn-mobile {
    display: flex;
    margin-top: 8px;
    width: 100%;
  }

  .hero-container {
    padding: 60px 20px 70px;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

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

  .riscos-section,
  .metodo-section,
  .atenta-section,
  .para-quem-section,
  .depoimentos-section,
  .faq-section {
    padding: 60px 20px;
  }

  .section-title-lg {
    font-size: 30px;
  }

  .risk-grid,
  .receive-grid,
  .para-quem-grid,
  .testimonial-grid,
  .reviews-grid,
  .practice-grid {
    grid-template-columns: 1fr;
  }

  .practice-card-featured {
    grid-column: span 1;
  }

  .practice-card {
    padding: 20px 16px;
    gap: 14px;
  }

  .practice-cta-btn {
    min-width: 100%;
    width: 100%;
  }

  .receive-box,
  .practice-box {
    padding: 28px 20px;
  }

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

  .footer-bottom-bar {
    flex-direction: column;
    gap: 12px;
  }

  .modal-card {
    padding: 28px 20px;
  }

  .lgpd-bar {
    flex-direction: column;
    text-align: center;
    gap: 12px;
    padding: 16px 20px;
  }

  .map-embed-wrapper {
    height: 380px;
  }

  .footer-seal-card {
    width: 90px;
    height: 80px;
    padding: 6px 8px;
    border-radius: 8px;
  }
}