@import url("https://fonts.googleapis.com/css2?family=Playwrite+England+SemiJoined&display=swap");

:root {
  --cyan: #08dae9;
  --dark-bg: #001b1d;
  --white: #ffffff;
}

/* Compensação de altura do menu flutuante em links âncora */
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;
}

.hero-section {
  width: 100%;
  position: relative;
  overflow: hidden;
  min-height: 750px;
}
.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 15, 17, 0.8);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  height: 750px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: 80px;
  text-align: center;
}

.section-beneficios {
  background-color: var(--dark-bg);
  padding: 120px 0 80px 0;
  width: 100%;
  display: flex;
  justify-content: center;
}
.section-solucoes {
  background-color: #001114;
  padding: 120px 0 80px 0;
  width: 100%;
  display: flex;
  justify-content: center;
}
.section-descontos {
  background-color: #ffffff;
  padding: 120px 0 80px 0;
  width: 100%;
  color: #346e7e;
}
.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;
}
.texto-destaque-light {
  font-weight: 300;
  font-size: 1.5rem;
  display: block;
  color: #346e7e;
  margin-bottom: 10px;
}
.titulo-especialidades {
  font-family: "Playwrite England SemiJoined", cursive;
  font-size: 2.8rem;
  font-weight: bold;
  margin-bottom: 40px;
  display: block;
  color: #346e7e;
}
.grid-listas {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
  text-align: left;
}
.lista-especialidades {
  list-style: none;
  padding: 0;
  color: #346e7e;
}
.lista-especialidades li {
  margin-bottom: 10px;
  font-weight: 500;
}
.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);
}
.solucoes-container,
.descontos-container {
  width: 75%;
  margin: auto;
  text-align: center;
}
.grid-solucoes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  max-width: 900px;
  margin: 40px auto;
}
.item-solucao {
  padding: 15px;
  border: 2px solid var(--cyan);
  border-radius: 20px;
  background: rgba(8, 218, 233, 0.05);
  transition: 0.3s;
}
.item-solucao:hover {
  box-shadow: 0 0 20px var(--cyan);
  transform: scale(1.05);
}
.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 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;
}
.card-plano {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(8, 218, 233, 0.2);
  border-radius: 20px;
  padding: 40px;
  text-align: left;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.card-plano:hover {
  transform: translateY(-15px);
  border-color: #08dae9;
  box-shadow:
    0 0 20px rgba(8, 218, 233, 0.3),
    inset 0 0 10px rgba(8, 218, 233, 0.1);
}
.card-header-center {
  text-align: center;
}

/* Nova classe para o texto Contratação Plano Anual */
.nota-contratacao {
  color: #b3b7b8;
  font-size: 0.85rem;
  display: block;
  margin-bottom: 15px;
  font-style: italic;
}

.preco-riscado {
  color: #888;
  font-size: 0.9rem;
  text-decoration: line-through;
  display: block;
}
.preco-destaque {
  color: #08dae9;
  font-size: 2.5rem;
  font-weight: bold;
}
.preco-pequeno {
  font-size: 1rem;
}

.lista-planos {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}
.lista-planos li {
  color: #ffffff;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}
.lista-planos li::before {
  content: "✔";
  color: #08dae9;
  margin-right: 10px;
  font-weight: bold;
}

.btn-assinar {
  display: inline-block;
  border: 2px solid #08dae9;
  color: #08dae9;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: bold;
  text-align: center;
  width: 100%;
  margin-top: 20px;
  transition: 0.3s;
}
.btn-assinar:hover {
  background: #08dae9;
  color: #001b1d;
  box-shadow: 0 0 15px #08dae9;
}
.badge-mais-vendido {
  position: absolute;
  top: 20px;
  right: -40px;
  background: #08dae9;
  color: #001b1d;
  padding: 5px 40px;
  transform: rotate(45deg);
  font-weight: bold;
  font-size: 0.8rem;
}

/* 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;
}

/* Seção 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;
  }
  .qs-texto {
    text-align: center;
  }
  .qs-logo {
    margin-left: auto;
    margin-right: auto;
  }
  .grid-beneficios {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-solucoes,
  .grid-listas {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .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;
  }
}
