.cards{
  display:grid;
  grid-template-columns:repeat(3, minmax(220px,1fr));
  gap:20px;
}

.card{
  padding:24px;
  border-radius:20px;
}

/* centraliza segunda linha */

.cards .card:nth-child(4){
  grid-column:1 / 2;
  justify-self:end;
}

.cards .card:nth-child(5){
  grid-column:3 / 4;
  justify-self:start;
}

@media (max-width:900px){

.cards{
  grid-template-columns:repeat(2,1fr);
}

.cards .card:nth-child(4),
.cards .card:nth-child(5){
  grid-column:auto;
  justify-self:auto;
}

}

@media (max-width:600px){

.cards{
  grid-template-columns:1fr;
}

}

/* Melhorias para a seção Microbiota Intestinal */
.page-block {
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  padding: 22px 20px;
  margin-bottom: 18px;
}

.page-block p {
  margin-top: 0;
  margin-bottom: 18px;
  color: #222;
  font-size: 1.08rem;
}

.page-subblock {
  margin-bottom: 14px;
}

.page-subblock strong {
  color: #0ea5e9;
  display: block;
  margin-bottom: 6px;
  font-size: 1.04rem;
}

.page-list {
  margin: 0 0 0 18px;
  padding: 0 0 0 18px;
  color: #0b1220;
}

.page-list > li {
  margin-bottom: 6px;
}

.page-subblock em {
  color: #22c55e;
  font-style: normal;
  font-weight: 600;
  display: block;
  margin-top: 10px;
}

/* Melhorias para a seção Hipersensibilidade Alimentar */
.page-desc {
  font-size: 1.08rem;
  color: #222;
  margin-bottom: 18px;
}

.page-block {
  margin-bottom: 18px;
  padding: 16px 18px;
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
}

.page-block strong {
  display: block;
  color: #0ea5e9;
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.page-list {
  margin: 0;
  padding-left: 20px;
  color: #0b1220;
}

.page-block em {
  color: #22c55e;
  font-style: normal;
  font-weight: 600;
}
.steps-grid{
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  margin-top: 10px;
}

@media (max-width: 900px) {
  .steps-grid {
    grid-template-columns: 1fr;
  }
}
/* Alinhamento dos blocos de preço dos cards premium */
.card-content {
  min-height: 340px; /* ajuste este valor conforme necessário para alinhar */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
:root{
  --bg: #f5f7fa;
  --dark: #020617;
  --dark2: #0f172a;
  --text: #0b1220;
  --muted: #64748b;

  --blue: #0ea5e9;
  --green: #22c55e;
  --gold: #facc15;

  --glass: rgba(15, 23, 42, 0.60);
  --line: rgba(255, 255, 255, 0.12);
  --shadow: 0 25px 60px rgba(2, 6, 23, 0.22);
}

*{ box-sizing: border-box; }

body{
  margin: 0;
  font-family: Arial, sans-serif;
  background: var(--bg);
  padding-top: 0; /* remove faixa branca do header */
  color: var(--text);
}

/* =========================
   MENU GLASS (HEADER)
========================= */
.glass-header{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 3000;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  background: linear-gradient(90deg, rgba(5,10,20,0.90) 0%, rgba(5,10,20,0.62) 50%, rgba(5,10,20,0.20) 100%);
}

.nav-container{
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 25px;
}

.logo{ height: 55px; }

.menu{
  display: flex;
  gap: 18px;
  align-items: center;
}

.menu a{
  color: white;
  text-decoration: none;
  font-weight: 500;
  opacity: .95;
}

.menu a:hover{ opacity: 1; }

.menu .cta{
  background: linear-gradient(135deg, var(--blue), var(--green));
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 800;
}

/* Dropdown submenu (abre ao passar o mouse) */
.menu .menu-item{
  position: relative;
}
.menu .has-submenu > a{
  display: inline-flex;
  align-items: center;
}
.menu .submenu{
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: rgba(15,23,42,0.95);
  border-radius: 10px;
  padding: 10px 8px;
  min-width: 200px;
  box-shadow: 0 12px 30px rgba(2,6,23,.5);
  list-style: none;
  margin: 0;
  display: none;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity .18s ease, transform .18s ease;
  z-index: 9999;
}
.menu .submenu li{ padding: 6px 10px; }
.menu .submenu li a{
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  display: block;
}
.menu .submenu li a:hover{ color: var(--blue); }

/* Exibe submenu ao passar o mouse (desktop) e com foco para acessibilidade */
.menu .has-submenu:hover .submenu,
.menu .has-submenu:focus-within .submenu{
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* ========= MENU MOBILE OVERLAY (não empurra a página) ========= */

/* backdrop padrão (desktop: invisível) */
.menu-backdrop{ display:none; }

@media (max-width: 900px){

  /* botão hamburguer aparece */
  .menu-mobile{
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    line-height: 1;
    color: #fff;
    cursor: pointer;
    z-index: 100000;
  }

  /* backdrop (fundo escuro) */
  .menu-backdrop{
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(2,6,23,.55);
    z-index: 99998;
  }
  .menu-backdrop.open{ display:block; }

  /* painel lateral */
  .menu{
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;

    height: 100vh !important;
    width: min(86vw, 320px) !important;

    padding: 92px 18px 22px; /* espaço para o header */
    display: flex !important;
    flex-direction: column !important;
    gap: 14px !important;

    background: rgba(15,23,42,.97);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);

    transform: translateX(110%) !important; /* fechado */
    transition: transform .25s ease !important;

    z-index: 99999 !important;

    overflow-y: auto !important;
    overscroll-behavior: contain;
  }

  .menu.open{
    transform: translateX(0) !important; /* aberto */
  }

  /* submenus no mobile: abrem por clique (JS adiciona .open) */
  .menu .submenu{
    position: static !important;
    display: none !important;
    background: transparent !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin: 0 !important;
  }
  .menu .has-submenu.open .submenu{
    display: block !important;
  }
}

/* =========================
   HERO (CINEMATOGRÁFICO)
========================= */
.hero{
  position: relative;
  min-height: 100vh;   /* fallback para navegadores antigos / editor */
  min-height: 100svh;  /* altura real no mobile moderno */
  width: 100%;
  background: url("img/performance.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  padding: 110px 6% 140px;
  /* overflow: hidden; removido para não cortar submenu */
  z-index: 5;
}

/* overlay */
.hero-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(5, 10, 20, 0.75) 0%,
    rgba(5, 10, 20, 0.62) 50%,
    rgba(5, 10, 20, 0.20) 100%
  );
  z-index: 1;
}

/* conteúdo */
.hero-content{
  position: relative;
  z-index: 2;
  max-width: 720px;
  color: #fff;
  transform: translateY(-60px);
  animation: fadeUp 1.2s ease;
}

.hero-badge{
  display: inline-block;
  background: rgba(34,197,94,0.15);
  color: var(--green);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hero-content h1{
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  line-height: 1.1;
  margin: 0 0 16px;
}

.hero-content p{
  font-size: 1.05rem;
  opacity: .92;
  margin: 0 0 28px;
  max-width: 520px;
}

.hero-cta{
  display: inline-block;
  padding: 14px 28px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--green), #16a34a);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
  box-shadow: 0 10px 30px rgba(34,197,94,.35);
}
.hero-cta:hover{
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 15px 40px rgba(34,197,94,.45);
}

@media (max-width: 768px){
  .hero{
    padding: 120px 6% 80px;
    min-height: 90vh;
  }
  .hero-content{ transform: translateY(-30px); }
  .hero-content h1{ font-size: 2rem; }
}

@keyframes fadeUp{
  from{ opacity:0; transform: translateY(40px); }
  to{ opacity:1; transform: translateY(-60px); }
}

/* =========================
   EXAMS GRID (cards premium)
========================= */
.exams-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 70px auto 120px; /* sem subir */
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

.exam-card{
  background: linear-gradient(180deg, rgba(15,23,42,.85), rgba(2,6,23,.95));
  border-radius: 24px;
  padding: 24px;
  color: #fff;
  box-shadow: 0 30px 60px rgba(0,0,0,.35);
  transition: transform .35s ease, box-shadow .35s ease;
  transform-style: preserve-3d;
  display: flex;
  flex-direction: column;
}

.exam-card:hover{
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 45px 90px rgba(0,0,0,.55);
}

.card-icon{
  width: 54px;
  height: 54px;
  object-fit: contain;
  margin-bottom: 12px;
}

.card-image{
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 16px;
}

.exam-card h3{
  font-size: 14px;
  margin: 10px 0 8px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #60a5fa;
}

.exam-card h4{
  font-size: 20px;
  font-weight: 900;
  margin: 0 0 12px;
  color: #fff;
}

.exam-card p{
  font-size: 15px;
  line-height: 1.6;
  opacity: .92;
  margin: 0;
}

.exam-card ul{
  margin: 16px 0 24px;
  padding: 0;
  list-style: none;
}

.exam-card li{
  font-size: 14px;
  margin-bottom: 8px;
  opacity: .95;
}

.btn-card{
  margin-top: auto;
  display: inline-block;
  text-align: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, #3b82f6, #06b6d4);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease;
}
.btn-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(59,130,246,.5);
}

/* =========================
   PASSO A PASSO (FULL WIDTH)
========================= */
.steps-section{
  padding: 110px 6%;
  background: linear-gradient(180deg, var(--dark), var(--dark) 60%, var(--dark2));
  color: #e5e7eb;
}

.steps-container{
  max-width: 1150px;
  margin: 0 auto;
  text-align: center;
}

.steps-container h2{
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin: 0 0 12px;
  color: #fff;
}

.steps-subtitle{
  color: #cbd5f5;
  margin: 0 0 48px;
  opacity: .95;
}

.steps-grid{
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  margin-top: 10px;
}

.step-card{
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px;
  padding: 26px;
  text-align: left;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  transition: transform .3s ease, box-shadow .3s ease;
}

.step-card span{
  display:block;
  font-weight: 900;
  font-size: 32px;
  margin-bottom: 10px;
  color: var(--green);
}

.step-card h4{
  margin: 0 0 10px;
  color: #fff;
  font-size: 1.05rem;
}

.step-card p{
  margin: 0;
  color: #cbd5f5;
  font-size: .95rem;
  line-height: 1.55;
}

.step-card:hover{
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 25px 60px rgba(34,197,94,.22);
}

/* =========================
   FAQ (ACORDEÃO)
========================= */
.faq-section{
  padding: 110px 6%;
  background: var(--dark);
  color: #fff;
}

.section-title{
  text-align: center;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin: 0 0 35px;
}

.faq-container{
  max-width: 900px;
  margin: 0 auto;
}

.faq-item{
  border-bottom: 1px solid rgba(255,255,255,0.12);
  padding: 6px 0;
}

.faq-question{
  width: 100%;
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 1rem;
  padding: 18px 0;
  text-align: left;
  cursor: pointer;
  position: relative;
}

.faq-question::after{
  content:"+";
  position:absolute;
  right:0;
  top:50%;
  transform: translateY(-50%);
  font-size: 22px;
  transition: transform .25s ease;
}

.faq-item.active .faq-question::after{
  transform: translateY(-50%) rotate(45deg);
}

.faq-answer{
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}

.faq-answer p{
  margin: 0;
  padding: 0 0 18px;
  color: #cbd5f5;
  line-height: 1.55;
  opacity: .95;
}

/* =========================
   FOOTER PREMIUM
========================= */
.footer-premium{
  background: linear-gradient(135deg, var(--dark), rgba(2,6,23,.92));
  color: #cbd5e1;
  padding: 80px 6% 30px;
  margin-top: 120px;
}

.footer-container{
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 2fr 1.3fr 0.9fr 0.9fr;
  gap: 48px;
  align-items: start;
}

.footer-logo{
  max-width: 160px;
  margin-bottom: 16px;
}

.footer-col h4{
  color: #fff;
  margin: 0 0 14px;
  font-size: .95rem; /* <-- aqui é o tamanho do título */
}

.footer-col ul{
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-col ul li{ margin-bottom: 8px; }

.footer-col ul li a{
  font-size: .85rem;
  line-height: 1.6;
  color: #cbd5f5;
  opacity: .85;
  text-decoration: none;
  transition: color .2s ease, opacity .2s ease;
}
.footer-col ul li a:hover{ color: var(--green); opacity: 1; }

/* Só links legais (não afeta Exames) */
.footer-legal ul li a{
  font-size: .82rem;
  line-height: 1.5;
  opacity: .85;
}

.footer-socials{
  display:flex;
  gap: 12px;
  margin-top: 14px;
}

.footer-socials img{
  width: 26px;
  height: 26px;
  object-fit: contain;
  opacity: .85;
  transition: transform .2s ease, opacity .2s ease;
}
.footer-socials a:hover img{
  transform: translateY(-3px) scale(1.1);
  opacity: 1;
}

.footer-bottom{
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 40px;
  padding-top: 20px;
  text-align: center;
  font-size: .85rem;
  color: #94a3b8;
}

/* RESPONSIVO FOOTER */

@media (max-width: 900px){
  .footer-container{grid-template-columns: 1fr 1fr;}
}

@media (max-width: 520px){
  .footer-container{ grid-template-columns: 1fr; }
}

/* RESPONSIVO GERAL */
@media (max-width: 768px){
  .steps-section,
  .faq-section{
    padding: 80px 6%;
  }
}
.page-wrap{
  max-width: 1200px;
  margin: 0 auto;
  padding: 70px 24px 0;
}

.page-section{
  background: #fff;
  border-radius: 18px;
  padding: 32px;
  margin-bottom: 24px;
  box-shadow: 0 15px 40px rgba(2,6,23,.08);
}

.page-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin-top: 14px;
}

.page-card{
  background: #f8fafc;
  border: 1px solid rgba(2,6,23,.08);
  border-radius: 14px;
  padding: 16px;
  font-weight: 600;
}

.page-list{
  margin: 14px 0 0;
  padding-left: 18px;
  color: #0b1220;
}

.contact-form{
  display:grid;
  gap: 10px;
}

.contact-form input,
.contact-form textarea{
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(2,6,23,.12);
  padding: 12px 14px;
  font-size: 1rem;
}
.card-price{
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: grid;
  gap: 4px;
}

.card-price strong{
  font-size: 1.15rem;
  color: #facc15; /* gold */
}

.card-price small{
  color: #cbd5f5;
  opacity: .85;
}

.card-actions{
  display: flex;
  gap: 10px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.btn-buy{
  display: inline-block;
  padding: 12px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, #22c55e, #0ea5e9);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease;
}

.btn-buy:hover{
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(14,165,233,.35);
}

.btn-secondary{
  display: inline-block;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  transition: transform .2s ease, background .2s ease;
}

.btn-secondary:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,0.12);
}
/* =========================================
   PATCH PREMIUM (HEADER + SUBMENU + MOLÉCULAS)
   Cole no FINAL do seu style.css
========================================= */

/* HEADER: cor igual ao HERO + topo absoluto */
.glass-header{
  z-index: 99999 !important;
  overflow: visible !important;
  background: linear-gradient(
    90deg,
    rgba(5,10,20,0.90) 0%,
    rgba(5,10,20,0.62) 50%,
    rgba(5,10,20,0.20) 100%
  ) !important;
}

.nav-container{ overflow: visible !important; }

.menu{
  position: relative;
  z-index: 99999;
  overflow: visible;
}

/* SUBMENU: sempre acima do hero/imagens */
.menu-item.has-submenu{ position: relative; }

.menu-item.has-submenu .submenu{
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  z-index: 999999 !important;

  min-width: 240px;
  padding: 10px;
  margin: 0;
  list-style: none;

  border-radius: 14px;
  background: rgba(15, 23, 42, 0.92);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 20px 60px rgba(0,0,0,0.45);

  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);

  display: none;
}

.menu-item.has-submenu:hover .submenu,
.menu-item.has-submenu:focus-within .submenu{
  display: block;
}

.menu-item.has-submenu .submenu a{
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
}

.menu-item.has-submenu .submenu a:hover{
  background: rgba(255,255,255,0.08);
}

/* HERO: não pode ficar “acima” do header/submenu */
.hero{
  z-index: 1 !important;
}

/* ===== MOLÉCULAS: VISÍVEIS (NO HERO) =====
   IMPORTANTE: coloque o <div class="molecules"> DENTRO da section.hero,
   logo depois do .hero-overlay (vou te mostrar abaixo)
*/
.hero{ position: relative; overflow: hidden; }

.hero .molecules{
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2; /* acima do overlay e abaixo do texto */
}

.hero .mol{
  position: absolute;
  border-radius: 999px;

  /* MAIS APARENTE */
  opacity: .85;
  box-shadow: 0 0 28px rgba(14,165,233,.55);

  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,.90), rgba(255,255,255,0) 55%),
    radial-gradient(circle at 70% 70%, rgba(34,197,94,.70), rgba(14,165,233,.55) 60%, rgba(2,6,23,0) 78%);

  animation: floatMol 10s ease-in-out infinite;
}

/* posições/tamanhos */
.hero .m1{ left: 8%;  top: 22%; width: 18px; height: 18px; animation-duration: 12s; }
.hero .m2{ left: 22%; top: 72%; width: 10px; height: 10px; animation-duration: 9s;  }
.hero .m3{ left: 45%; top: 35%; width: 14px; height: 14px; animation-duration: 11s; }
.hero .m4{ left: 62%; top: 18%; width: 12px; height: 12px; animation-duration: 8s;  }
.hero .m5{ left: 78%; top: 60%; width: 20px; height: 20px; animation-duration: 13s; }
.hero .m6{ left: 90%; top: 30%; width: 9px;  height: 9px;  animation-duration: 7s;  }

@keyframes floatMol{
  0%   { transform: translate(0,0) scale(1); opacity: .70; }
  50%  { transform: translate(-18px,-22px) scale(1.15); opacity: 1; }
  100% { transform: translate(0,0) scale(1); opacity: .70; }
}

/* texto do hero acima das moléculas */
.hero-content{
  z-index: 3 !important;
}
/* ===== CARD PRODUTO PREMIUM ===== */

.step-card{
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 520px; /* mantém altura uniforme */
}

/* descrição ocupa espaço flexível */
.step-card p{
  flex-grow: 1;
}

/* preço */
.card-price{
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.card-price strong{
  display: block;
  font-size: 1.25rem;
  font-weight: 900;
  color: #facc15;
  letter-spacing: .02em;
}

.card-price small{
  display: block;
  margin-top: 6px;
  font-size: .9rem;
  color: #cbd5f5;
  opacity: .85;
}

/* ações */
.card-actions{
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* botão full width */
.btn-buy{
  width: 100%;
  padding: 15px 18px;
  border-radius: 14px;
  text-align: center;
  font-weight: 900;
  letter-spacing: .03em;
  background: linear-gradient(135deg, #22c55e, #0ea5e9);
  box-shadow: 0 18px 40px rgba(14,165,233,.25);
  transition: all .25s ease;
}

.btn-buy:hover{
  transform: translateY(-3px);
  box-shadow: 0 22px 50px rgba(14,165,233,.35);
}
/* ===== STEP NUM — OPÇÃO 2 (Tech Glow Azul Premium) ===== */

.step-style-2{
  position: relative;
}

.step-style-2 .step-num{
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 8px 14px;
  border-radius: 14px;

  font-weight: 900;
  font-size: 14px;
  letter-spacing: .14em;

  color: #e6f4ff;
  background: rgba(14,165,233,.12);
  border: 1px solid rgba(96,165,250,.35);

  box-shadow:
    0 0 0 1px rgba(255,255,255,.05) inset,
    0 18px 40px rgba(14,165,233,.18),
    0 0 22px rgba(96,165,250,.22);

  margin-bottom: 14px;
}
/* =========================
   ELITE INTRO (Premium Biotech)
   aplica no trecho em destaque
========================= */

.elite-intro{
  max-width: 1100px;
  margin: 0 auto 34px;
  text-align: center;
  padding: 0 12px;
}

.elite-title{
  display: inline-block;
  margin: 0 0 14px;
  font-size: clamp(2rem, 3.6vw, 3.1rem);
  letter-spacing: -0.02em;
  color: #fff;
  text-shadow: 0 18px 55px rgba(14,165,233,.20);
}

/* o “destaque” premium (glass + glow + borda gradiente) */
.elite-highlight{
  margin: 0 auto;
  max-width: 980px;
  padding: 16px 18px;
  border-radius: 18px;

  color: rgba(255,255,255,.90);
  font-size: 0.98rem;
  line-height: 1.65;

  background: rgba(15,23,42,.58);
  border: 1px solid rgba(255,255,255,.12);

  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);

  box-shadow:
    0 18px 55px rgba(2,6,23,.55),
    0 0 0 1px rgba(34,197,94,.08) inset;
  position: relative;
  overflow: hidden;
}

/* linha gradiente premium no topo */
.elite-highlight::before{
  content:"";
  position:absolute;
  left: 14px;
  right: 14px;
  top: 12px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(14,165,233,.0), rgba(14,165,233,.9), rgba(34,197,94,.9), rgba(14,165,233,.0));
  opacity: .85;
}

/* glow suave no fundo */
.elite-highlight::after{
  content:"";
  position:absolute;
  inset: -40px;
  background:
    radial-gradient(circle at 20% 30%, rgba(14,165,233,.20), transparent 45%),
    radial-gradient(circle at 80% 55%, rgba(34,197,94,.18), transparent 50%);
  filter: blur(8px);
  opacity: .9;
  pointer-events: none;
}

.elite-highlight-strong{
  display: inline-block;
  margin-top: 10px;
  font-weight: 800;
  color: #fff;
  opacity: 1;
}

/* Responsivo */
@media (max-width: 520px){
  .elite-highlight{
    padding: 14px 14px;
    border-radius: 16px;
    font-size: .95rem;
  }
}
.audience-section{
  padding: 40px 6% 10px;
  position: relative;
  z-index: 2;
}

.elite-intro{
  max-width: 1150px;
  margin: 0 auto;
  text-align: center;
}
/* ===== INTEGRAÇÃO HERO -> INTRO + CARDS (Premium Dark) ===== */
.hero-integrated{
  position: relative;
  padding: 40px 6% 120px;
  background: linear-gradient(
    180deg,
    rgba(2,6,23,0) 0%,
    rgba(2,6,23,0.80) 18%,
    rgba(2,6,23,0.96) 60%,
    rgba(2,6,23,1) 100%
  );
}

/* “fade” que conecta com o final do hero */
.hero-integrated::before{
  content:"";
  position:absolute;
  left:0; right:0; top:-140px;
  height:140px;
  background: linear-gradient(
    180deg,
    rgba(2,6,23,0) 0%,
    rgba(2,6,23,0.65) 55%,
    rgba(2,6,23,0.95) 100%
  );
  pointer-events:none;
}

/* Título + card do texto (glass) */
.elite-title{
  text-align: center;
  color: #fff;
  font-size: clamp(2rem, 3.2vw, 3rem);
  margin: 0 0 14px;
  text-shadow: 0 12px 40px rgba(0,0,0,.45);
}

.elite-highlight{
  max-width: 980px;
  margin: 0 auto 40px;
  padding: 18px 22px;
  border-radius: 18px;
  color: rgba(255,255,255,.88);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 60px rgba(0,0,0,.35);
  line-height: 1.65;
}

/* cards no mesmo “mood” do hero */
.hero-integrated .step-card{
  background: linear-gradient(180deg, rgba(15,23,42,.72), rgba(2,6,23,.92));
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 30px 70px rgba(0,0,0,.45);
}

.hero-integrated .step-card h4{ color:#fff; }
.hero-integrated .step-card li{ color: rgba(255,255,255,.86); }
/* =========================
   FIX MOBILE/GERAL: MOLÉCULAS NÃO PODEM COBRIR A PÁGINA
   (no seu HTML existe .molecules fora do hero)
========================= */

/* 1) A camada global de moléculas deve ser BACKGROUND */
.molecules{
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

/* 2) Cada bolha */
.molecules .mol{
  position: absolute;
  border-radius: 999px;
  opacity: .35;               /* menor para não “embaçar” */
  filter: none;               /* evita blur em camada global */
}

/* 3) Garanta que o conteúdo sempre fique acima */
body > *{
  position: relative;
  z-index: 1;
}

/* 4) HERO: overlay nunca bloqueia */
.hero-overlay{
  pointer-events: none;
}

/* 5) Header sempre acima */
.glass-header{
  z-index: 99999;
}

/* 6) Em mobile, remove qualquer chance de “filtro geral” */
@media (max-width: 900px){
  .molecules{ opacity: .35; }
  body{
    overflow-x: hidden;
  }
}
/* ===== CORREÇÃO MOBILE HEADER FIXO ===== */
@media (max-width: 900px){

  body{
    padding-top: 85px;
  }

}
@media (max-width: 900px){
  .glass-header{
    position: sticky;
    top: 0;
    z-index: 9999;
  }
}

/* =========================================
   PROBLEMA INVISÍVEL + PLATAFORMA EVOLUA
========================================= */
.why-evolua{
  padding: 110px 24px 70px;
  position: relative;
}

.why-container{
  max-width: 1180px;
  margin: 0 auto;
  text-align: center;
}

.why-badge{
  display: inline-block;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  font-weight: 600;
  letter-spacing: .2px;
  opacity: .92;
}

.why-title{
  margin-top: 18px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
}

.why-sub{
  max-width: 920px;
  margin: 14px auto 0;
  opacity: .82;
  font-size: 1.05rem;
}

.why-grid{
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.why-card{
  text-align: left;
  padding: 22px 20px;
  border-radius: 18px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(10px);
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}

.why-card:hover{
  transform: translateY(-6px);
  border-color: rgba(29,255,178,.38);
  background: rgba(255,255,255,.06);
}

.why-card h3{
  margin: 0 0 10px;
  font-size: 1.05rem;
}

.why-card p{
  margin: 0;
  opacity: .8;
  line-height: 1.45;
}

.why-ctaRow{
  margin-top: 34px;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.why-ctaPrimary{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  background: #1dffb2;
  color: #020617;
  font-weight: 800;
  text-decoration: none;
}

.why-ctaGhost{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.platform-evolua{
  padding: 70px 24px 110px;
}

.plat-container{
  max-width: 1180px;
  margin: 0 auto;
  text-align: center;
}

.plat-title{
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.1;
}

.plat-sub{
  max-width: 980px;
  margin: 12px auto 0;
  opacity: .82;
}

.plat-flow{
  margin-top: 44px;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1.1fr;
  gap: 14px;
  align-items: stretch;
}

.plat-step{
  text-align: left;
  padding: 22px 20px;
  border-radius: 18px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(10px);
}

.plat-stepStrong{
  border-color: rgba(29,255,178,.35);
  background: rgba(29,255,178,.08);
}

.plat-chip{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 30px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  font-weight: 800;
  margin-bottom: 10px;
}

.plat-step h3{
  margin: 0 0 8px;
  font-size: 1.05rem;
}

.plat-step p{
  margin: 0;
  opacity: .82;
  line-height: 1.45;
}

.plat-arrow{
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: .55;
  font-size: 22px;
}

.trust-row{
  margin-top: 26px;
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.trust-item{
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  opacity: .9;
  font-weight: 650;
}

/* Responsivo */
@media (max-width: 980px){
  .why-grid{
    grid-template-columns: 1fr;
  }
  .plat-flow{
    grid-template-columns: 1fr;
  }
  .plat-arrow{
    display: none;
  }
}
/* =========================================
   AUTORIDADE CIENTÍFICA EVOLUA
========================================= */

.authority-section{
  padding:120px 24px;
  position:relative;
}

.authority-container{
  max-width:1200px;
  margin:0 auto;
  text-align:center;
}

.authority-badge{
  display:inline-block;
  padding:10px 18px;
  border-radius:999px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.14);
  font-weight:600;
  margin-bottom:18px;
}

.authority-title{
  font-size:clamp(30px,4vw,46px);
  line-height:1.1;
}

.authority-sub{
  max-width:820px;
  margin:16px auto 0;
  opacity:.8;
}

.authority-grid{
  margin-top:50px;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:24px;
}

.authority-card{
  padding:28px;
  border-radius:18px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.12);
  backdrop-filter:blur(12px);
  transition:.35s;
}

.authority-card:hover{
  transform:translateY(-6px);
  border-color:#1dffb2;
}

.authority-icon{
  font-size:32px;
  margin-bottom:12px;
}

.authority-card h3{
  margin-bottom:10px;
}

.authority-card p{
  opacity:.8;
  line-height:1.5;
}
.exam-card p { line-height: 1.55; }
.exam-card h3 { letter-spacing: .2px; }