@import url("https://fonts.googleapis.com/css2?family=Playwrite+England+SemiJoined&display=swap");

:root {
  --cyan: #08dae9;
  --dark-bg: #001b1d;
  --white: #ffffff;
  --card-green-1: #004d40; /* Tom 1 - Individual */
  --card-green-2: #00695c; /* Tom 2 - Familiar */
  --card-green-3: #00897b; /* Tom 3 - Empresarial */
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 140px;
}

body {
  margin: 0;
  padding: 0;
  font-family: sans-serif;
  background-color: var(--dark-bg);
  color: var(--white);
}

/* Header e Menu */
header {
  position: fixed;
  top: 20px;
  left: 5%;
  width: 90%;
  height: 100px;
  background: rgba(0, 15, 17, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(8, 218, 233, 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(--cyan) !important;
  transition: 0.3s;
}
#mobile-menu {
  display: none;
  position: fixed;
  top: 130px;
  left: 5%;
  width: 90%;
  background: rgba(0, 27, 29, 0.95);
  border: 1px solid var(--cyan);
  border-radius: 24px;
  padding: 30px 0;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  z-index: 999;
}
#mobile-menu.show {
  display: flex !important;
}
#mobile-menu a.bg-[#08DAE9] {
  color: #001b1d !important;
}

/* Divisor Padrão */
.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 {
  display: none;
}

.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 #08dae9;
  color: #08dae9;
  font-weight: 700;
  padding: 12px 36px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 0 18px rgba(8, 218, 233, 0.45);
  transition: all 0.3s ease;
}
.btn-hero-planos:hover {
  background: #08dae9;
  color: #001b1d;
  box-shadow: 0 0 25px rgba(8, 218, 233, 0.85);
}

.btn-hero-consulta {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 2px solid #ffffff;
  color: #ffffff;
  font-weight: 700;
  padding: 12px 36px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.btn-hero-consulta:hover {
  background: #ffffff;
  color: #001b1d;
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.35);
}

/* =========================================================
   SEÇÃO CARDS - 70% Largura, Baixado -60px, Abas Horizontais e Imagem 16:9
   ========================================================= */
.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(0, 27, 29, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(8, 218, 233, 0.4);
  color: #c4d7d9;
  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: #08dae9;
  color: #ffffff;
}
.btn-card-tab.active {
  background: #08dae9;
  border-color: #08dae9;
  color: #001b1d;
  box-shadow: 0 0 15px rgba(8, 218, 233, 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(8, 218, 233, 0.45);
  border-radius: 24px;
  overflow: hidden;
  box-shadow:
    0 15px 35px rgba(0, 0, 0, 0.3),
    0 0 25px rgba(8, 218, 233, 0.15);
  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-individual {
  background: linear-gradient(135deg, var(--card-green-1) 0%, #00251f 100%);
}
.card-fundo-familiar {
  background: linear-gradient(135deg, var(--card-green-2) 0%, #003831 100%);
}
.card-fundo-empresarial {
  background: linear-gradient(135deg, var(--card-green-3) 0%, #004c44 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: 400;
  letter-spacing: 0.08em;
  color: #08dae9;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.destaque-titulo {
  font-size: 2.3rem;
  font-weight: 800;
  line-height: 1.25;
  color: #ffffff;
  margin-bottom: 12px;
}
.destaque-subtitulo {
  font-size: 1.1rem;
  color: #c4d7d9;
  margin-bottom: 26px;
  line-height: 1.5;
}
.btn-destaque-quero {
  background: #08dae9;
  color: #001b1d;
  font-weight: 700;
  padding: 13px 40px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 0 20px rgba(8, 218, 233, 0.4);
  transition: all 0.3s ease;
  display: inline-block;
}
.btn-destaque-quero:hover {
  background: #ffffff;
  color: #001b1d;
  box-shadow: 0 0 25px rgba(255, 255, 255, 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-individual {
  background-color: var(--card-green-1);
}
.handle-familiar {
  background-color: var(--card-green-2);
}
.handle-empresarial {
  background-color: var(--card-green-3);
}

/* =========================================================
   SEÇÕES SEGUINTES
   ========================================================= */
.section-beneficios {
  background-color: #001114;
  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: center;
}
.col-direita {
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
}
.linha-baixo {
  font-family: "Playwrite England SemiJoined", cursive;
  font-size: 2.5rem;
  color: var(--cyan);
  margin-top: 10px;
  display: block;
}
.grid-beneficios {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 35px;
  justify-items: center;
}
.item-beneficio {
  padding: 20px;
  border: 2px solid var(--cyan);
  border-radius: 20px;
  background: rgba(8, 218, 233, 0.05);
  transition: 0.3s;
}
.item-beneficio:hover {
  box-shadow: 0 0 20px var(--cyan);
  transform: scale(1.05);
}
.section-descontos {
  background-color: #ffffff;
  padding: 120px 0 80px 0;
  width: 100%;
  color: #346e7e;
}
.descontos-container {
  width: 75%;
  margin: auto;
  text-align: center;
}
.titulo-descontos {
  font-family: "Playwrite England SemiJoined", cursive;
  font-size: 2.8rem;
  font-weight: bold !important;
  margin: 0;
}
.clicaimax-swiper {
  width: 100%;
  margin-top: 40px;
  padding: 20px 0;
}
.clicaimax-swiper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}
.clicaimax-swiper .swiper-slide img {
  width: 100%;
  max-width: 150px;
  filter: grayscale(0);
  transition: 0.3s;
}
.clicaimax-swiper .swiper-slide img:hover {
  filter: grayscale(1);
  transform: scale(1.1);
}

/* =========================================================
   SEÇÃO ESPECIALIDADES
   ========================================================= */
.section-especialidades {
  background-color: #d4f1f4;
  padding: 120px 0 80px 0;
  width: 100%;
  color: #346e7e;
}
.titulo-solucoes-custom {
  color: #08dae9;
  font-family: "Playwrite England SemiJoined", cursive;
  font-size: 2.5rem;
  font-weight: 800;
  display: block;
  margin-bottom: 15px;
  text-transform: capitalize;
}
.especialidades-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
}
.especialidades-esquerda {
  flex: 1;
  text-align: center;
}
.especialidades-direita {
  flex: 0 0 400px;
  display: flex;
  justify-content: center;
  align-items: center;
  align-self: center;
}
.especialidades-direita img {
  max-width: 100%;
  height: auto;
  margin: auto;
  display: block;
}

.texto-destaque-light {
  font-family: "Playwrite England SemiJoined", cursive;
  font-size: 1.7rem;
  font-weight: 700;
  display: block;
  color: #346e7e;
  margin-bottom: 25px;
}

.badge-especialidades-wrapper {
  margin-bottom: 35px;
}
.titulo-especialidades {
  font-family: sans-serif;
  font-size: clamp(1rem, 5.5vw, 2.4rem);
  font-weight: 400;
  text-transform: uppercase;
  color: #346e7e;
  display: inline-block;
  background: transparent;
  border: 2px solid rgba(8, 218, 233, 0.6);
  border-radius: 50px;
  padding: 8px 30px;
  letter-spacing: 0.03em;
  white-space: nowrap;
  max-width: 100%;
}

.grid-especialidades-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  column-gap: 20px;
  row-gap: 10px;
  margin-top: 25px;
  padding-left: 14px;
}

.card-especialidade {
  background: #ffffff;
  border: 1px solid rgba(8, 218, 233, 0.6);
  border-radius: 12px;
  padding: 6px 10px;
  min-height: 38px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  position: relative;
  overflow: visible;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 2px 8px rgba(52, 110, 126, 0.08);
  cursor: pointer;
}
.card-especialidade:hover {
  transform: translateY(-4px);
  border-color: #08dae9;
  box-shadow:
    0 0 20px rgba(8, 218, 233, 0.45),
    0 6px 16px rgba(8, 218, 233, 0.2);
}

.icone-circulo-especialidade {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 50%;
  background: #ebf8fa;
  border: none;
  box-shadow: 0 2px 6px rgba(8, 218, 233, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -8px 0 -8px -24px;
  transition: background 0.3s;
}
.card-especialidade:hover .icone-circulo-especialidade {
  background: #08dae9;
}
.card-especialidade svg {
  width: 20px;
  height: 20px;
  color: #346e7e;
  transition:
    transform 0.3s,
    color 0.3s;
}
.card-especialidade:hover svg {
  color: #001b1d;
  transform: scale(1.1);
}
.card-especialidade span {
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.2;
  color: #346e7e;
  text-align: center;
  flex: 1;
}

/* =========================================================
   SEÇÃO PLANOS
   ========================================================= */
.section-planos-novo {
  background-color: #001b1d;
  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: #ffffff;
}
.titulo-principal-planos {
  display: block;
  font-family: "Playwrite England SemiJoined", cursive;
  font-size: 3.2rem;
  color: #08dae9;
  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 cubic-bezier(0.175, 0.885, 0.32, 1.275);
  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, #001f22 0%, #001114 100%);
  color: #ffffff;
  border: 2px solid #08dae9;
  box-shadow: 0 0 25px rgba(8, 218, 233, 0.3);
}
.card-plano-escuro:hover {
  transform: translateY(-12px);
  box-shadow:
    0 0 40px rgba(8, 218, 233, 0.65),
    0 15px 30px rgba(8, 218, 233, 0.25);
}
.card-plano-escuro .icone-plano svg {
  color: #08dae9;
}
.card-plano-escuro .subtitulo-plano {
  color: #c4d7d9;
}
.card-plano-escuro .preco-destaque {
  color: #08dae9;
}
.card-plano-escuro .lista-planos li {
  color: #ffffff;
}
.card-plano-escuro .lista-planos li::before {
  color: #08dae9;
}
.card-plano-escuro .btn-assinar {
  background: #08dae9;
  border: 2px solid #08dae9;
  color: #001b1d;
}
.card-plano-escuro .btn-assinar:hover {
  background: transparent;
  color: #08dae9;
  box-shadow: 0 0 20px rgba(8, 218, 233, 0.7);
}

.card-plano-claro {
  background: linear-gradient(180deg, #cbf3f7 0%, #d4f1f4 100%);
  color: #001b1d;
  border: 2px solid #08dae9;
  box-shadow: 0 0 45px rgba(8, 218, 233, 0.65);
}
.card-plano-claro:hover {
  transform: translateY(-12px);
  box-shadow:
    0 0 60px rgba(8, 218, 233, 0.85),
    0 15px 35px rgba(8, 218, 233, 0.4);
}
.card-plano-claro .icone-plano svg {
  color: #001b1d;
}
.card-plano-claro .subtitulo-plano {
  color: #1a4d56;
}
.card-plano-claro .preco-destaque {
  color: #001b1d;
}
.card-plano-claro .lista-planos li {
  color: #001b1d;
}
.card-plano-claro .lista-planos li::before {
  color: #001b1d;
}
.card-plano-claro .btn-assinar {
  background: #001b1d;
  border: 2px solid #001b1d;
  color: #08dae9;
}
.card-plano-claro .btn-assinar:hover {
  background: transparent;
  color: #001b1d;
  box-shadow: 0 0 15px rgba(0, 27, 29, 0.4);
}

.badge-mais-vendido-pill {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: #08dae9;
  color: #001b1d;
  padding: 6px 24px;
  border-radius: 50px;
  font-weight: bold;
  font-size: 0.85rem;
  box-shadow: 0 4px 15px rgba(8, 218, 233, 0.5);
  white-space: nowrap;
  z-index: 10;
}

.card-header-center {
  text-align: center;
}
.preco-riscado {
  color: #888;
  font-size: 0.95rem;
  text-decoration: line-through;
  display: block;
}
.preco-destaque {
  font-size: 2.8rem;
  font-weight: bold;
  display: block;
  margin: 5px 0 20px 0;
}
.preco-pequeno {
  font-size: 1.1rem;
  font-weight: 500;
}

.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: #b3b7b8;
  font-size: 0.9rem;
  font-style: italic;
  margin-top: 50px;
  text-align: center;
  display: block;
}

/* =========================================================
   SEÇÃO APLICATIVOS
   ========================================================= */
.section-aplicativos {
  background-color: var(--white);
  padding: 120px 0 80px 0;
  width: 100%;
  color: #346e7e;
}
.aplicativos-container {
  width: 75%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}
.app-esquerda {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.app-direita {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.app-direita img {
  max-width: 100%;
  height: auto;
}
.app-logo {
  max-height: 80px;
  width: auto;
  margin-bottom: 30px;
}
.app-texto-light {
  font-weight: 300;
  font-size: 2.2rem;
  display: block;
  color: #346e7e;
}
.app-texto-destaque-wrapper {
  margin-top: 15px;
  margin-bottom: 25px;
}
.app-texto-destaque {
  font-family: sans-serif;
  font-size: 2.2rem;
  font-weight: bold;
  color: #346e7e;
  background-color: transparent;
  border: 2px solid var(--cyan);
  padding: 12px 40px;
  border-radius: 50px;
  display: inline-block;
  line-height: 1.2;
}
.app-texto-pequeno {
  font-size: 1.1rem;
  color: #346e7e;
  margin-bottom: 30px;
  line-height: 1.5;
}
.app-botoes {
  display: flex;
  justify-content: center;
  gap: 20px;
}
.app-botoes img {
  height: 50px;
  transition: transform 0.3s;
  cursor: pointer;
}
.app-botoes img:hover {
  transform: scale(1.05);
}

/* =========================================================
   SEÇÃO FAQ
   ========================================================= */
.section-faq {
  background-color: #d4f1f4;
  padding: 120px 0 80px 0;
  width: 100%;
  color: #346e7e;
}
.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;
}
.faq-titulo {
  font-family: "Playwrite England SemiJoined", cursive;
  font-size: 2.24rem;
  font-weight: bold;
  color: #346e7e;
  margin-bottom: 15px;
}
.faq-texto-pequeno {
  font-size: 1.1rem;
  color: #346e7e;
  line-height: 1.5;
}
.faq-accordion-wrapper {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
  margin-top: 30px;
  text-align: left;
}
.faq-item {
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(52, 110, 126, 0.2);
  border-radius: 15px;
  padding: 20px 30px;
  transition: background 0.3s;
}
.faq-item[open] {
  background: rgba(255, 255, 255, 0.85);
}
.faq-pergunta {
  font-size: 0.875rem;
  font-weight: bold;
  color: #346e7e;
  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: #346e7e;
}
.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: #346e7e;
}

/* =========================================================
   SEÇÃO QUEM SOMOS
   ========================================================= */
.section-quem-somos {
  background-color: var(--dark-bg);
  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 20px auto;
  display: block;
}
.qs-titulo {
  color: var(--white);
  font-family: "Playwrite England SemiJoined", cursive;
  font-size: 2.1rem;
  font-weight: bold;
  margin-bottom: 25px;
  text-align: center;
}
.qs-texto {
  color: var(--cyan);
  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: #000f11;
  padding: 80px 0 20px 0;
  width: 100%;
}
.footer-container {
  width: 75%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 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: #ffffff;
  transition: fill 0.3s;
}
.social-icon:hover svg {
  fill: var(--cyan);
}
.footer-titulo {
  color: var(--cyan);
  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: #b3b7b8;
}
.footer-link-gray:hover {
  color: var(--cyan);
}
.footer-link-white {
  color: #ffffff;
}
.footer-link-white:hover {
  color: var(--cyan);
}

.footer-bottom {
  width: 75%;
  margin: 60px auto 0 auto;
  border-top: 1px solid rgba(179, 183, 184, 0.2);
  padding-top: 30px;
  text-align: center;
  color: #b3b7b8;
  font-size: 0.72rem;
  line-height: 1.8;
}

/* =========================================================
   RESPONSIVIDADE GERAL
   ========================================================= */
@media (max-width: 768px) {
  header {
    padding: 0 20px;
  }
  .quem-somos-container,
  .beneficios-container,
  .especialidades-container,
  .aplicativos-container,
  .faq-container {
    flex-direction: column;
    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;
  }
  .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(0, 27, 29, 0.8) 0px,
      rgba(0, 27, 29, 0.8) 300px,
      rgba(0, 27, 29, 0) 350px
    );
    z-index: 1;
    pointer-events: none;
  }

  /* Cards Mobile: Em coluna, com altura mínima ampliada para 640px e imagem 16:9 inteira */
  .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;
  }

  .qs-texto {
    text-align: center;
  }
  .qs-logo {
    margin-left: auto;
    margin-right: auto;
  }
  .grid-beneficios {
    grid-template-columns: repeat(2, 1fr);
  }
  .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;
  }
  .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 (min-width: 1024px) {
  .clicaimax-swiper .swiper-slide img {
    max-width: 225px;
  }
}
