/* Reset e fonte padrão */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #f5f5f5;
}

.topo-e-banner {
  overflow: hidden;
}

.carrossel {
  position: relative;
  height: 760px;
  overflow: hidden;
}

/* TOPO */
header {
  position: absolute;
  top: 0;
  left: 0;
  height: 120px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  background-color: transparent;
  z-index: 20;
}

.logo {
  height: 76px;
  width: 76px;
}

.menu {
  display: flex;
  gap: 16px;
}

.menu a {
  text-decoration: none;
  color: white;
  font-size: 16px;
  padding: 10px 20px;
  border-radius: 12px;
  border: 2px solid rgb(223, 223, 223);
  background-color: rgba(0, 0, 0, 0.4);
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.menu a:hover {
  background-color: rgba(0, 0, 0, 0.9);
}

.menu a.entrar {
  background-color: #e344e3;
  border: none;
  font-weight: 600;
  padding: 12px 32px;
}

.menu a.entrar:hover {
  background-color: #6b08ad;
}

/* SLIDE COM TRANSIÇÃO LATERAL */
.slide {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  padding: 20px;
  transition: transform 0.6s ease;
  transform: translateX(100%);
  opacity: 0;
  z-index: 0;
}

.slide.ativo {
  transform: translateX(0%);
  opacity: 1;
  z-index: 1;
}

.slide.saindo-esquerda {
  transform: translateX(-100%);
  opacity: 1;
  z-index: 1;
}

.banner-conteudo h1 {
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 10px;
  text-shadow: 1px 1px 4px #000000aa;
}

.banner-conteudo p {
  font-size: 20px;
  text-shadow: 1px 1px 3px #00000099;
}

.indicadores {
  position: absolute;
  bottom: 30px;
  width: 100%;
  text-align: center;
  z-index: 15;
}

.dot {
  display: inline-block;
  height: 12px;
  width: 12px;
  margin: 0 5px;
  background-color: rgba(255,255,255,0.6);
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s;
}

.dot.ativo {
  background-color: #ffffff;
}

/* NOVA SEÇÃO "O QUE É" */
.secao-oque-e {
  padding: 80px 20px;
  background-color: #ffffff;
}

.container-oque-e {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.oque-e-texto {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
}

.oque-e-texto h2 {
  font-size: 36px;
  color: #56078b;
  margin-bottom: 20px;
}

.oque-e-texto p {
  font-size: 18px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 16px;
}

.oque-e-imagem {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.oque-e-imagem img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.como-funciona {
  padding: 60px 20px;
  background-color: #fafafa;
  color: #222;
  text-align: center;
  max-width: 1200px;
  margin: 80px auto 80px auto;
}

.como-funciona .secao-titulo {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #56078b;
}

.cards-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.card {
  background-color: white;
  border-radius: 16px;
  padding: 30px 20px 40px 20px;
  width: 280px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 28px rgba(86, 7, 139, 0.3);
}

.card-icone {
  font-size: 48px;
  color: #56078b;
  margin-bottom: 20px;
}

.card h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 16px;
}

.card p {
  font-size: 16px;
  line-height: 1.5;
  color: #555;
}

a {
  color: #FFF;
}

/* Responsivo */
@media (max-width: 960px) {
  .cards-container {
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .cards-container {
    flex-direction: column;
    gap: 25px;
    align-items: center;
  }

  .card {
    width: 90%;
    max-width: 350px;
  }
}

.secao-planos {
  padding: 80px 40px;
  background-color: #fefefe;
  text-align: center;
}

.secao-planos h2 {
  font-size: 32px;
  margin-bottom: 40px;
  font-weight: 600;
}

.cards-planos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.card-plano {
  background-color: #ffffff;
  border-radius: 16px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.08);
  padding: 30px 20px;
  text-align: left;
  transition: transform 0.3s ease;
}

.card-plano:hover {
  transform: translateY(-5px);
}

.card-plano h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #56078b;
}

.card-plano .preco {
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #222;
}

.card-plano .preco span {
  font-size: 14px;
  font-weight: normal;
  color: #777;
}

.card-plano ul {
  list-style: none;
  padding: 0;
}

.card-plano li {
  display: flex;
  align-items: center;
  font-size: 15px;
  margin-bottom: 12px;
  gap: 8px;
}

.verde {
  color: #2ecc71;
}

.vermelho {
  color: #e74c3c;
}

.card-plano.destaque {
  border: 2px solid #56078b;
  background-color: #faf4ff;
}

.btn-contratar {
  margin-top: 16px;
  background-color: #56078b;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: 100%;
}

.btn-contratar:hover {
  background-color: #6b08ad;
}

.secao-demonstracao {
  background-color: #f7f7f7;
  padding: 60px 20px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

.container-demonstracao {
  max-width: 800px;
  margin: 0 auto;
}

.secao-demonstracao h2 {
  font-size: 32px;
  font-weight: 600;
  color: #222;
  margin-bottom: 20px;
}

.secao-demonstracao p {
  font-size: 18px;
  color: #444;
  margin-bottom: 40px;
}

.form-demonstracao {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.campo-form {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.campo-form label {
  font-weight: 500;
  margin-bottom: 5px;
  color: #333;
}

.campo-form input {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
}

.btn-agendar {
  background-color: #56078b;
  color: white;
  font-size: 16px;
  font-weight: 600;
  padding: 14px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
}

.btn-agendar:hover {
  background-color: #6b08ad;
}

.secao-prejuizo-visual {
  background-color: #fff;
  padding: 80px 20px;
  font-family: 'Poppins', sans-serif;
  text-align: center;
  border-top: 1px solid #e0e0e0;
}

.prejuizo-visual-container {
  max-width: 1100px;
  margin: 0 auto;
}

.secao-prejuizo-visual h2 {
  font-size: 32px;
  color: #d32f2f;
  margin-bottom: 16px;
}

.secao-prejuizo-visual .intro {
  font-size: 18px;
  color: #444;
  margin-bottom: 50px;
}

.dados-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-bottom: 50px;
}

.dado-card {
  background-color: #f9f9f9;
  border-radius: 12px;
  padding: 24px;
  width: 300px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.2s ease;
}

.dado-card:hover {
  transform: translateY(-5px);
}

.dado-card i {
  font-size: 40px;
  color: #4caf50;
  margin-bottom: 16px;
}

.dado-card h3 {
  font-size: 22px;
  color: #333;
  margin-bottom: 12px;
}

.dado-card p {
  font-size: 16px;
  color: #555;
  line-height: 1.5;
}

.fonte {
  font-size: 12px;
  color: #999;
}

.contador-bloco {
  margin-top: 50px;
}

.contador-bloco h3 {
  font-size: 20px;
  margin-bottom: 14px;
  color: #222;
}

.contador-bloco i {
  margin-right: 8px;
  color: #4caf50;
}

.contador-numero {
  font-size: 38px;
  font-weight: bold;
  color: #2e7d32;
  background: #e8f5e9;
  padding: 18px 36px;
  border-radius: 12px;
  display: inline-block;
  margin-top: 10px;
}

.btn-calcular {
  display: inline-block;
  margin-top: 40px;
  background-color: #56078b;
  color: white;
  font-size: 18px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s;
}

.btn-calcular:hover {
  background-color: #6b08ad;
}


/* MENU RESPONSIVO 

    .menu-toggle {
      display: none;
      background: none;
      border: none;
      font-size: 2rem;
      cursor: pointer;
      color: #FFF;
      z-index: 2001;
    }

    nav.menu {
      display: flex;
      gap: 1rem;
      align-items: center;
    }

    @media (max-width: 768px) {
      nav.menu {
        display: none;
        flex-direction: column;
        background-color: white;
        position: fixed;
        inset: 0;
        padding-top: 100px;
        text-align: center;
        z-index: 2000;
      }

      nav.menu.menu-active {
        display: flex;
      }

      nav.menu a {
        color: #333;
        font-size: 18px;
        padding: 15px 0;
        border-bottom: 1px solid #ddd;
        width: 100%;
      }

      nav.menu a:last-child {
        border-bottom: none;
      }

      .menu-toggle {
        display: block;
      }

      header {
        background-color: transparent;
        padding: 10px 20px;
      }
    }

    header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 10px 20px;
      position: relative;
      background: transparent;
      z-index: 100;
    }

    .logo {
      height: 50px;
      width: 50px;
      object-fit: contain;
    } */

    /* === MENU MOBILE ESTILIZADO === */

/* Corrige visibilidade do botão menu (esconde no desktop) */
@media (min-width: 769px) {
  .menu-toggle {
    display: none !important;
  }
}

.menu-toggle {
  display: none;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
}



@media (max-width: 768px) {
  .menu-toggle {
    display: block;
    font-size: 2.4rem;
    color: white;
    background: none;
    border: none;
    z-index: 2001;
  }

  nav.menu {
    display: none;
    flex-direction: column;
    align-items: center;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.96);
    padding-top: 100px;
    text-align: center;
    z-index: 2000;
  }

  nav.menu.menu-active {
    display: flex;
  }

  nav.menu a {
    color: white;
    font-size: 16px;
    padding: 10px 0;
    width: 80%;
    border-bottom: 1px solid rgba(255, 255, 255, 255,);
    text-decoration: none;
    transition: background 0.3s;
  }

  nav.menu a:hover {
    background-color: rgba(255, 255, 255, 0.1);
  }

  nav.menu a.entrar {
    background-color: #56078b;
    padding: 14px;
    margin-top: 20px;
    font-weight: bold;
    font-size: 18px;
    border: none;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    border-radius: 8px;
  }

  nav.menu a.entrar:hover {
    background-color: #6b08ad;
  }

  header {
    padding: 10px 20px;
    /*position: fixed;*/
    top: 0;
    left: 0;
    width: 100%;
    background-color: transparent;
    z-index: 3000;
  }

  .logo {
    height: 50px;
    width: 50px;
  }
}



/* Botão fechar menu - só mobile */
@media (max-width: 768px) {
  .menu-close {
    display: block;
    background: none;
    border: none;
    color: white;
    font-size: 2.8rem;
    position: absolute;
    top: 15px;
    right: 20px;
    cursor: pointer;
    z-index: 2100;
  }
}




/* === AJUSTES RESPONSIVOS PARA CELULAR - MOBILE === */
@media (max-width: 768px) {

  /* PREJUÍZO NACIONAL */
  .secao-prejuizo-visual {
    padding: 40px 15px;
  }

  .secao-prejuizo-visual h2 {
    font-size: 24px;
    margin-bottom: 12px;
  }

  .secao-prejuizo-visual .intro {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .dados-cards {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
  }

  .dado-card {
    width: 90%;
    padding: 20px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.07);
    text-align: center;
  }

  .dado-card i {
    font-size: 36px;
    margin-bottom: 12px;
  }

  .dado-card h3 {
    font-size: 20px;
  }

  .dado-card p {
    font-size: 15px;
  }

  .contador-bloco h3 {
    font-size: 18px;
  }

  .contador-numero {
    font-size: 28px;
    padding: 14px 24px;
  }

  .btn-calcular {
    font-size: 16px;
    padding: 12px 24px;
    width: 100%;
  }

  /* DEMONSTRAÇÃO GRATUITA */
  .secao-demonstracao {
    padding: 40px 15px;
  }

  .secao-demonstracao h2 {
    font-size: 24px;
  }

  .secao-demonstracao p {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .form-demonstracao {
    gap: 16px;
    align-items: stretch;
  }

  .campo-form {
    max-width: 100%;
  }

  .campo-form input {
    font-size: 15px;
  }

  .btn-agendar {
    font-size: 16px;
    padding: 12px;
  }
}

/* Oculta o botão no desktop */
@media (min-width: 769px) {
  .menu-toggle {
    display: none !important;
  }
}

/* Exibe o botão no mobile */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
    font-size: 2.4rem;
    color: white;
    background: none;
    border: none;
    z-index: 2001;
  }
}


/* RODAPÉ */

.rodape {
  background-color: #1f1f1f;
  color: #ccc;
  padding: 60px 20px 20px;
  font-family: 'Poppins', sans-serif;
}

.rodape-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.rodape-coluna {
  flex: 1;
  min-width: 250px;
}

.rodape-logo {
  width: 70px;
  margin-bottom: 20px;
}

.rodape-coluna h4 {
  color: #fff;
  margin-bottom: 16px;
  font-size: 18px;
}

.rodape-coluna p,
.rodape-coluna a {
  color: #ccc;
  font-size: 15px;
  text-decoration: none;
  margin-bottom: 10px;
  display: block;
  transition: color 0.3s;
}

.rodape-coluna a:hover {
  color: #fff;
}

.redes-sociais a {
  color: #ccc;
  font-size: 20px;
  margin-right: 12px;
  transition: color 0.3s;
}

.redes-sociais a:hover {
  color: #6b08ad;
}

.rodape-direitos {
  text-align: center;
  margin-top: 40px;
  font-size: 14px;
  color: #888;
  border-top: 1px solid #333;
  padding-top: 20px;
}

/* Responsivo */
@media (max-width: 768px) {
  .rodape-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .rodape-coluna {
    margin-bottom: 30px;
  }
}

/* SEÇÃO FALE CONOSCO */

.secao-fale-conosco {
  background-color: #fafafa;
  padding: 80px 20px;
  font-family: 'Poppins', sans-serif;
  text-align: center;
}

.container-fale-conosco {
  max-width: 800px;
  margin: 0 auto;
}

.secao-fale-conosco h2 {
  font-size: 32px;
  font-weight: 600;
  color: #56078b;
  margin-bottom: 20px;
}

.secao-fale-conosco p {
  font-size: 18px;
  color: #444;
  margin-bottom: 40px;
}

.form-fale-conosco {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: left;
}

.campo-form label {
  font-weight: 500;
  margin-bottom: 6px;
  color: #333;
}

.campo-form input,
.campo-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
  font-family: 'Poppins', sans-serif;
}

.btn-fale-conosco {
  background-color: #56078b;
  color: white;
  font-size: 16px;
  font-weight: 600;
  padding: 14px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.btn-fale-conosco:hover {
  background-color: #6b08ad;
}


/* MOBILE FALE CONOSCO */

@media (max-width: 768px) {
  .secao-fale-conosco h2 {
    font-size: 24px;
  }

  .secao-fale-conosco p {
    font-size: 16px;
  }

  .btn-fale-conosco {
    font-size: 16px;
    width: 100%;
  }
}


/* ====== SEÇÃO ARTIGOS ====== */

.secao-artigos {
  background-color: #f9f9f9;
  padding: 3rem 1rem;
  font-family: 'Poppins', sans-serif;
  color: #222;
}

.container-artigos {
  max-width: 900px;
  margin: 0 auto;
}

.secao-artigos h2 {
  font-weight: 600;
  font-size: 2.4rem;
  margin-bottom: 2rem;
  text-align: center;
  color: #004a99;
}

.secao-artigos .artigo h3 {
  font-weight: 600;
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #002f66;
}

.secao-artigos .artigo h4 {
  font-weight: 600;
  font-size: 1.3rem;
  margin-top: 1.8rem;
  margin-bottom: 0.8rem;
  color: #0066cc;
}

.secao-artigos .artigo p,
.secao-artigos .artigo ul {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  color: #333;
}

.secao-artigos .artigo ul {
  list-style-type: disc;
  margin-left: 1.5rem;
}

.secao-artigos .call-to-action {
  margin-top: 1.5rem;
  font-weight: 700;
  font-size: 1.1rem;
  color: #0059b3;
  text-align: center;
}

.btn-cta-artigo {
  display: block;
  width: fit-content;
  margin: 1.2rem auto 0;
  background-color: #007BFF;
  color: white;
  padding: 0.8rem 2rem;
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.btn-cta-artigo:hover,
.btn-cta-artigo:focus {
  background-color: #0056b3;
  outline: none;
}

/* ===== RESPONSIVIDADE ===== */

/* RESPONSIVO PARA SEÇÃO ARTIGOS */
@media screen and (max-width: 768px) {
  .secao-artigos {
    padding: 40px 20px;
  }

  .container-artigos {
    max-width: 100%;
    padding: 0;
  }

  .container-artigos h2 {
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
  }

  .artigo {
    padding: 20px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  }

  .artigo h3 {
    font-size: 20px;
    margin-bottom: 16px;
  }

  .artigo h4 {
    font-size: 18px;
    margin-top: 24px;
  }

  .artigo p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 16px;
  }

  .artigo ul {
    padding-left: 20px;
    margin-bottom: 16px;
  }

  .artigo ul li {
    font-size: 16px;
    margin-bottom: 10px;
    list-style-type: disc;
  }

  .call-to-action {
    font-size: 16px;
    text-align: center;
    margin: 24px 0 16px;
  }

  .btn-cta-artigo {
    display: block;
    width: 100%;
    text-align: center;
    background-color: #4CAF50;
    color: #fff;
    padding: 14px;
    font-size: 16px;
    text-decoration: none;
    border-radius: 6px;
    transition: background-color 0.3s ease;
  }

  .btn-cta-artigo:hover {
    background-color: #45a049;
  }
}



/* FARMÁCIAS NACIONAL */

.raiox-farma {
  background: #f8f9fa;
  padding: 40px 20px;
  font-family: Arial, sans-serif;
}
.raiox-header h2 {
  color: #c62828;
  font-weight: bold;
}
.raiox-header p {
  max-width: 700px;
  margin-bottom: 30px;
  color: #555;
}
.raiox-dados {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.raiox-item {
  background: white;
  border-radius: 12px;
  padding: 20px;
  flex: 1;
  min-width: 250px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.valor {
  font-size: 2rem;
  color: #c62828;
  font-weight: bold;
}
.descricao {
  margin-top: 10px;
  font-size: 1rem;
  color: #444;
}
.fonte {
  display: block;
  margin-top: 8px;
  font-size: 0.8rem;
  color: #888;
}
.grafico-circular {
  position: relative;
  width: 100px;
  height: 100px;
  margin: auto;
}
.grafico-circular svg {
  transform: rotate(-90deg);
  width: 100px;
  height: 100px;
}
.circulo-bg {
  fill: none;
  stroke: #eee;
  stroke-width: 2.8;
}
.circulo-progresso {
  fill: none;
  stroke: #c62828;
  stroke-width: 2.8;
  stroke-linecap: round;
}
.percentual {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.2rem;
  font-weight: bold;
}
.raiox-contador {
  margin-top: 40px;
  text-align: center;
}
.contador-numero {
  font-size: 2rem;
  font-weight: bold;
  color: #c62828;
  margin: 10px 0;
