@import url("https://fonts.googleapis.com/css2?family=Playwrite+England+SemiJoined&display=swap");

:root {
  /* Nova Paleta Miquelino */
  --champagne: #c6a66b;
  --azul-noite: #0b1f2a;
  --azul-petroleo: #163b46;
  --areia: #e8e0d2;
  --off-white: #f7f5f0;
  --grafite: #25282a;
  --white: #ffffff;

  /* Variações de fundo dos Cards principais */
  --card-bg-1: var(--azul-noite);
  --card-bg-2: #102c38;
  --card-bg-3: var(--azul-petroleo);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 140px;
}

body {
  margin: 0;
  padding: 0;
  font-family: sans-serif;
  background-color: var(--azul-noite);
  color: var(--off-white);
}

/* Header e Menu */
header {
  position: fixed;
  top: 20px;
  left: 5%;
  width: 90%;
  height: 100px;
  background: rgba(11, 31, 42, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(198, 166, 107, 0.3);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  z-index: 1000;
}
header nav a:hover,
#mobile-menu a:hover {
  color: var(--champagne) !important;
  transition: 0.3s;
}

/* Menu Mobile */
#mobile-menu {
  visibility: hidden;
  opacity: 0;
  transform: translateY(-20px);
  position: fixed;
  top: 130px;
  left: 5%;
  width: 90%;
  background: rgba(11, 31, 42, 0.98);
  border: 1px solid var(--champagne);
  border-radius: 24px;
  padding: 30px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  z-index: 999;
  transition: all 0.3s ease;
}
#mobile-menu.show {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}
#mobile-menu a {
  color: var(--off-white);
}

.secao-divisor {
  clip-path: polygon(0 50px, 100% 0, 100% 100%, 0 100%);
  margin-top: -50px;
}

/* =========================================================
   SEÇÃO HERO
   ========================================================= */
.hero-section {
  width: 100%;
  position: relative;
  overflow: hidden;
  min-height: 750px;
  border-radius: 0 0 36px 36px;
}
.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay-mobile {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  min-height: 750px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 8% 120px 8%;
}

.hero-text-box {
  max-width: 720px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 32px;
}

.btn-hero-planos {
  background: transparent;
  border: 2px solid var(--champagne);
  color: var(--champagne);
  font-weight: 700;
  padding: 12px 36px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 0 18px rgba(198, 166, 107, 0.35);
  transition: all 0.3s ease;
}
.btn-hero-planos:hover {
  background: var(--champagne);
  color: var(--azul-noite);
  box-shadow: 0 0 25px rgba(198, 166, 107, 0.7);
}

.btn-hero-consulta {
  background: rgba(247, 245, 240, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 2px solid var(--off-white);
  color: var(--off-white);
  font-weight: 700;
  padding: 12px 36px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.btn-hero-consulta:hover {
  background: var(--off-white);
  color: var(--azul-noite);
  box-shadow: 0 8px 25px rgba(247, 245, 240, 0.35);
}

/* =========================================================
   SEÇÃO CARDS - SANFONA
   ========================================================= */
.section-cards {
  padding: 0 0 80px 0;
  margin-top: -60px;
  position: relative;
  z-index: 20;
  width: 100%;
  background-color: transparent;
  display: flex;
  justify-content: center;
}
.destaque-container {
  width: 70%;
  margin: auto;
  text-align: center;
}

.cards-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
  margin-bottom: 0;
}
.btn-card-tab {
  background: rgba(11, 31, 42, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(198, 166, 107, 0.4);
  color: var(--areia);
  padding: 8px 22px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-card-tab:hover {
  border-color: var(--champagne);
  color: var(--off-white);
}
.btn-card-tab.active {
  background: var(--champagne);
  border-color: var(--champagne);
  color: var(--azul-noite);
  box-shadow: 0 0 15px rgba(198, 166, 107, 0.4);
}

.cards-stack-wrapper {
  position: relative;
  width: 100%;
  min-height: 400px;
  border-radius: 24px;
  overflow: hidden;
}

.destaque-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(198, 166, 107, 0.3);
  border-radius: 24px;
  overflow: hidden;
  box-shadow:
    0 15px 35px rgba(0, 0, 0, 0.3),
    0 0 25px rgba(198, 166, 107, 0.1);
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  padding-bottom: 14px;
  transition:
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.5s ease;
}

.card-fundo-contabil {
  background: linear-gradient(135deg, var(--card-bg-1) 0%, #061117 100%);
}
.card-fundo-juridico {
  background: linear-gradient(135deg, var(--card-bg-2) 0%, #0a1b24 100%);
}
.card-fundo-financeiro {
  background: linear-gradient(135deg, var(--card-bg-3) 0%, #0f2932 100%);
}

.card-item-base {
  z-index: 10;
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}
.card-item-overlay {
  z-index: 20;
  opacity: 0;
  transform: translateX(100%);
  pointer-events: none;
}
.card-item-overlay.card-item-open {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.destaque-conteudo-esq {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  text-align: left;
  padding: 45px 50px;
  flex: 1;
}

.destaque-subtitulo-topo {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--champagne);
  margin-bottom: 8px;
  text-transform: uppercase;
}
.destaque-titulo {
  font-size: 2.3rem;
  font-weight: 800;
  line-height: 1.25;
  color: var(--off-white);
  margin-bottom: 12px;
}
.destaque-subtitulo {
  font-size: 1.1rem;
  color: var(--areia);
  margin-bottom: 26px;
  line-height: 1.5;
}

.btn-destaque-quero {
  background: var(--champagne);
  color: var(--azul-noite);
  font-weight: 700;
  padding: 13px 40px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 0 20px rgba(198, 166, 107, 0.4);
  transition: all 0.3s ease;
  display: inline-block;
}
.btn-destaque-quero:hover {
  background: var(--off-white);
  color: var(--azul-noite);
  box-shadow: 0 0 25px rgba(247, 245, 240, 0.7);
  transform: translateY(-2px);
}

.destaque-imagem-dir {
  height: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  position: relative;
  display: flex;
  align-self: stretch;
  flex-shrink: 0;
}
.destaque-imagem-dir img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card-trigger-handles {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 14px;
  z-index: 30;
  display: flex;
  flex-direction: row;
}
.card-handle-green {
  height: 100%;
  flex: 1;
  cursor: pointer;
  transition: filter 0.3s ease;
  position: relative;
  border-right: 1px solid rgba(0, 0, 0, 0.25);
}
.card-handle-green:last-child {
  border-right: none;
}
.card-handle-green:hover {
  filter: brightness(1.15);
}
.handle-contabil {
  background-color: var(--card-bg-1);
}
.handle-juridico {
  background-color: var(--card-bg-2);
}
.handle-financeiro {
  background-color: var(--card-bg-3);
}

/* =========================================================
   SEÇÃO 3: SOLUÇÕES / BENEFÍCIOS 
   ========================================================= */
.section-beneficios {
  background-color: var(--azul-petroleo);
  padding: 80px 0 80px 0;
  width: 100%;
  display: flex;
  justify-content: center;
}
.beneficios-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
}
.col-esquerda {
  flex: 1;
  text-align: left;
}
.col-direita {
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
}
.titulo-corporativo {
  font-family: sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--champagne);
  margin-top: 10px;
  display: block;
  line-height: 1.2;
}

.grid-beneficios {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-top: 35px;
}

.item-servico-retangular {
  padding: 23px 15px;
  border: 1px solid rgba(198, 166, 107, 0.4);
  border-radius: 10px;
  background: rgba(198, 166, 107, 0.05);
  transition: 0.3s;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 90px;
}
.item-servico-retangular:hover {
  box-shadow: 0 0 15px rgba(198, 166, 107, 0.25);
  transform: translateY(-2px);
  border-color: var(--champagne);
}

.texto-servico {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.texto-servico .linha-1 {
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--areia);
  margin-bottom: 2px;
}
.texto-servico .linha-2 {
  font-size: 1.36rem;
  font-weight: 700;
  color: var(--champagne);
}

/* =========================================================
   SEÇÃO 4: PORQUE CONTRATAR (CENTRALIZADA)
   ========================================================= */
.section-motivos {
  background-color: var(--off-white);
  padding: 120px 0 80px 0;
  width: 100%;
  color: var(--grafite);
}
.descontos-container {
  width: 75%;
  margin: auto;
  text-align: center;
}
.titulo-descontos {
  font-family: sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  margin: 0;
}

.grid-motivos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: stretch;
  text-align: left;
}

.card-motivo-novo {
  background-color: var(--azul-noite);
  border: 2px solid var(--champagne);
  border-radius: 24px;
  padding: 40px 30px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
}

.card-motivo-novo:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(11, 31, 42, 0.25);
}

.card-motivo-novo h3 {
  color: var(--off-white);
}

.subtexto-motivo {
  font-size: 1rem;
  color: var(--areia);
}

.numero-grafico {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 65px;
  height: 65px;
  border: 3px solid var(--champagne);
  border-radius: 50%;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--champagne);
  margin-bottom: 25px;
  position: relative;
  background-color: transparent;
  z-index: 1;
}

.numero-grafico::after {
  content: "";
  position: absolute;
  top: 6px;
  left: 6px;
  width: 100%;
  height: 100%;
  background-color: var(--champagne);
  border-radius: 50%;
  z-index: -1;
  opacity: 0.15;
}

/* =========================================================
   SEÇÃO 5: SEGMENTOS ATENDIDOS
   ========================================================= */
.section-segmentos-novo {
  background-color: var(--areia);
  padding: 120px 0 100px 0;
  width: 100%;
}

.segmentos-container-novo {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.segmentos-esquerda {
  flex: 1;
  text-align: left;
}

.segmentos-direita {
  flex: 0 0 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.segmentos-direita img {
  max-width: 100%;
  height: auto;
}

.segmentos-header-novo {
  text-align: left;
  max-width: 100%;
  margin: 0 0 40px 0;
}

.segmentos-subtitulo-novo {
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--azul-petroleo);
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px;
}

.segmentos-titulo-novo {
  font-family: sans-serif;
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--azul-noite);
  margin-bottom: 20px;
  line-height: 1.2;
}

.segmentos-subtexto-novo {
  font-size: 1.15rem;
  color: var(--grafite);
  line-height: 1.6;
}

.grid-segmentos-novo {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.card-segmento-novo {
  background-color: var(--off-white);
  border: 1px solid rgba(198, 166, 107, 0.3);
  border-left: 4px solid var(--champagne);
  border-radius: 8px;
  padding: 18px 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(11, 31, 42, 0.05);
}

.card-segmento-novo span {
  font-size: 1rem;
  font-weight: 700;
  color: var(--azul-noite);
  text-align: center;
}

.card-segmento-novo:hover {
  background-color: var(--champagne);
  border-left-color: var(--azul-noite);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(198, 166, 107, 0.2);
}

.card-segmento-novo:hover span {
  color: var(--azul-noite);
}

/* =========================================================
   SEÇÃO 6: PLANOS / SOLUÇÕES
   ========================================================= */
.section-planos-novo {
  background-color: var(--azul-noite);
  padding: 100px 0;
  width: 100%;
}
.planos-container-novo {
  width: 75%;
  margin: 0 auto;
  text-align: center;
}
.titulo-superior-planos {
  display: block;
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--off-white);
}
.titulo-principal-planos {
  display: block;
  font-family: sans-serif;
  font-size: 3.2rem;
  color: var(--champagne);
  margin-bottom: 60px;
}
.grid-planos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  align-items: stretch;
}
.card-plano {
  border-radius: 24px;
  padding: 40px 30px;
  text-align: left;
  position: relative;
  overflow: visible;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.icone-plano {
  display: flex;
  justify-content: center;
  margin-bottom: 18px;
}
.icone-plano svg {
  width: 54px;
  height: 54px;
}
.subtitulo-plano {
  font-size: 0.95rem;
  margin-bottom: 25px;
  line-height: 1.4;
}

.card-plano-escuro {
  background: linear-gradient(180deg, var(--azul-petroleo) 0%, #0c232c 100%);
  color: var(--off-white);
  border: 2px solid var(--champagne);
  box-shadow: 0 0 25px rgba(198, 166, 107, 0.2);
}
.card-plano-escuro:hover {
  transform: translateY(-12px);
  box-shadow:
    0 0 40px rgba(198, 166, 107, 0.45),
    0 15px 30px rgba(198, 166, 107, 0.15);
}
.card-plano-escuro .icone-plano svg {
  color: var(--champagne);
}
.card-plano-escuro .subtitulo-plano {
  color: var(--areia);
}
.card-plano-escuro .lista-planos li {
  color: var(--off-white);
}
.card-plano-escuro .lista-planos li::before {
  color: var(--champagne);
}
.card-plano-escuro .btn-assinar {
  background: var(--champagne);
  border: 2px solid var(--champagne);
  color: var(--azul-noite);
}
.card-plano-escuro .btn-assinar:hover {
  background: transparent;
  color: var(--champagne);
  box-shadow: 0 0 20px rgba(198, 166, 107, 0.5);
}

.card-plano-claro {
  background: linear-gradient(180deg, var(--areia) 0%, var(--off-white) 100%);
  color: var(--azul-noite);
  border: 2px solid var(--champagne);
  box-shadow: 0 0 45px rgba(198, 166, 107, 0.5);
}
.card-plano-claro:hover {
  transform: translateY(-12px);
  box-shadow:
    0 0 60px rgba(198, 166, 107, 0.65),
    0 15px 35px rgba(198, 166, 107, 0.3);
}
.card-plano-claro .icone-plano svg {
  color: var(--azul-noite);
}
.card-plano-claro .subtitulo-plano {
  color: var(--azul-petroleo);
}
.card-plano-claro .lista-planos li {
  color: var(--azul-noite);
}
.card-plano-claro .lista-planos li::before {
  color: var(--azul-noite);
}
.card-plano-claro .btn-assinar {
  background: var(--azul-noite);
  border: 2px solid var(--azul-noite);
  color: var(--champagne);
}
.card-plano-claro .btn-assinar:hover {
  background: transparent;
  color: var(--azul-noite);
  box-shadow: 0 0 15px rgba(11, 31, 42, 0.3);
}

.badge-mais-vendido-pill {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--champagne);
  color: var(--azul-noite);
  padding: 6px 24px;
  border-radius: 50px;
  font-weight: bold;
  font-size: 0.85rem;
  box-shadow: 0 4px 15px rgba(198, 166, 107, 0.5);
  white-space: nowrap;
  z-index: 10;
}
.card-header-center {
  text-align: center;
}
.lista-planos {
  list-style: none;
  padding: 0;
  margin: 20px 0 30px 0;
}
.lista-planos li {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  font-size: 1rem;
}
.lista-planos li::before {
  content: "✔";
  margin-right: 12px;
  font-weight: bold;
}
.btn-assinar {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: bold;
  text-align: center;
  width: 100%;
  transition: 0.3s;
}
.nota-contratacao-geral {
  color: var(--areia);
  font-size: 0.9rem;
  font-style: italic;
  margin-top: 50px;
  text-align: center;
  display: block;
}

/* =========================================================
   SEÇÃO 7: FAQ 
   ========================================================= */
.section-faq {
  background-color: var(--areia);
  padding: 120px 0 80px 0;
  width: 100%;
  color: var(--grafite);
}
.faq-container {
  width: 75%;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 50px;
}
.faq-esquerda {
  flex: 1;
  display: flex;
  justify-content: center;
}
.faq-medica {
  max-width: 70%;
  height: auto;
}
.faq-direita {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
}
.faq-logo {
  max-height: 80px;
  width: auto;
  margin-bottom: 20px;
  align-self: center;
  object-fit: contain;
}

/* Título Dividido do FAQ (1ª Linha +30%, 2ª Linha +50%) */
.faq-texto-destaque {
  text-align: center;
  margin-bottom: 35px;
}
.faq-linha-1 {
  display: block;
  font-size: 1.43rem; /* +30% a partir do texto base 1.1rem */
  color: var(--grafite);
  margin-bottom: 5px;
}
.faq-linha-2 {
  display: block;
  font-size: 1.65rem; /* +50% a partir do texto base 1.1rem */
  font-weight: 900;
  color: var(--azul-noite);
  line-height: 1.2;
}

.faq-accordion-wrapper {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
  text-align: left;
}
.faq-item {
  background: rgba(247, 245, 240, 0.4);
  border: 1px solid rgba(198, 166, 107, 0.3);
  border-radius: 15px;
  padding: 20px 30px;
  transition: background 0.3s;
}
.faq-item[open] {
  background: var(--off-white);
}
.faq-pergunta {
  font-size: 0.875rem;
  font-weight: bold;
  color: var(--azul-petroleo);
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 40px;
  outline: none;
}
.faq-pergunta::-webkit-details-marker {
  display: none;
}
.faq-pergunta::after {
  content: "▼";
  font-size: 0.9rem;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s;
  color: var(--azul-petroleo);
}
.faq-item[open] .faq-pergunta::after {
  transform: translateY(-50%) rotate(-180deg);
}
.faq-resposta {
  margin-top: 15px;
  font-size: 0.77rem;
  line-height: 1.6;
  color: var(--grafite);
}

/* =========================================================
   SEÇÃO 8: QUEM SOMOS 
   ========================================================= */
.section-quem-somos {
  background-color: var(--azul-noite);
  padding: 120px 0 80px 0;
  width: 100%;
}
.quem-somos-container {
  width: 75%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}
.qs-esquerda {
  flex: 1;
}
.qs-logo {
  max-height: 80px;
  width: auto;
  margin: 0 auto 35px auto;
  display: block;
}
.qs-texto {
  color: var(--areia);
  font-size: 1.1rem;
  line-height: 1.6;
  text-align: justify;
  margin-bottom: 20px;
}
.qs-direita {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.qs-imagem {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
}

/* =========================================================
   RODAPÉ (FOOTER)
   ========================================================= */
.footer-section {
  background-color: #08161e;
  padding: 80px 0 20px 0;
  width: 100%;
}
/* Footer Ajustado para 3 colunas após remover a aba legal */
.footer-container {
  width: 75%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.footer-col {
  display: flex;
  flex-direction: column;
}
.footer-logo {
  max-height: 60px;
  width: auto;
  margin-bottom: 25px;
  align-self: flex-start;
}
.social-icons {
  display: flex;
  gap: 15px;
}
.social-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--areia);
  transition: fill 0.3s;
}
.social-icon:hover svg {
  fill: var(--champagne);
}
.footer-titulo {
  color: var(--champagne);
  font-size: 0.88rem;
  font-weight: bold;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-link {
  text-decoration: none;
  font-size: 0.8rem;
  transition: color 0.3s;
}
.footer-link-gray {
  color: var(--areia);
}
.footer-link-gray:hover {
  color: var(--champagne);
}

.footer-bottom {
  width: 75%;
  margin: 60px auto 0 auto;
  border-top: 1px solid rgba(232, 224, 210, 0.1);
  padding-top: 30px;
  text-align: center;
  color: var(--areia);
  font-size: 0.72rem;
  line-height: 1.8;
  opacity: 0.7;
}

/* =========================================================
   RESPONSIVIDADE GERAL
   ========================================================= */
@media (max-width: 1024px) {
  .grid-segmentos-novo {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  header {
    padding: 0 20px;
  }

  .quem-somos-container,
  .beneficios-container,
  .segmentos-container-novo,
  .faq-container {
    flex-direction: column;
    text-align: center;
  }

  .segmentos-esquerda {
    text-align: center;
  }
  .segmentos-header-novo {
    text-align: center;
  }

  .hero-content {
    align-items: center;
    text-align: center;
    padding: 0 6% 70px 6%;
  }

  .hero-text-box {
    align-items: center;
    text-align: center;
    margin-top: 120px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-overlay-mobile {
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 350px;
    background: linear-gradient(
      to top,
      rgba(11, 31, 42, 0.8) 0px,
      rgba(11, 31, 42, 0.8) 300px,
      rgba(11, 31, 42, 0) 350px
    );
    z-index: 1;
    pointer-events: none;
  }

  .grid-beneficios {
    grid-template-columns: repeat(2, 1fr);
  }

  .cards-stack-wrapper {
    min-height: 640px;
  }
  .destaque-container {
    width: 90%;
  }
  .destaque-card {
    flex-direction: column;
    text-align: center;
    padding-bottom: 0;
    height: 100%;
  }
  .destaque-conteudo-esq {
    align-items: center;
    text-align: center;
    padding: 35px 25px;
  }
  .destaque-titulo {
    font-size: 1.8rem;
  }
  .destaque-imagem-dir {
    width: 100%;
    min-width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
  }
  .card-trigger-handles {
    display: none;
  }

  .grid-motivos {
    grid-template-columns: 1fr;
  }

  .grid-segmentos-novo {
    grid-template-columns: repeat(2, 1fr);
  }

  .qs-texto {
    text-align: center;
  }
  .qs-logo {
    margin-left: auto;
    margin-right: auto;
  }
  .grid-solucoes,
  .grid-especialidades-cards {
    grid-template-columns: repeat(2, 1fr);
    text-align: center;
  }
  .titulo-especialidades {
    padding: 6px 16px;
  }
  .faq-direita {
    align-items: center;
  }
  .faq-logo {
    align-self: center;
  }

  /* Rodapé mobile com 2 colunas para não esmagar */
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-logo {
    align-self: center;
  }
  .social-icons {
    justify-content: center;
  }
  .footer-col {
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .grid-beneficios {
    grid-template-columns: repeat(1, 1fr);
  }
  .grid-segmentos-novo {
    grid-template-columns: 1fr;
  }
  .footer-container {
    grid-template-columns: 1fr;
  }
}

@media screen and (min-width: 1024px) and (max-width: 1366px) {
  body {
    zoom: 0.7;
  }
}
