/* ============================================================
   CardioGenix Review — style.css (clean + organizado)
   Dica: mantenha esse arquivo “enxuto” e agrupe por seções.
   ============================================================ */

/* ===== Base / Reset ===== */
:root{
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color-scheme: light;
}
*{ box-sizing:border-box; }
body{ margin:0; background:#f6f7f9; color:#111; }

/* ===== Layout ===== */
.wrap{ max-width: 980px; margin:0 auto; padding: 16px; }
.top{ display:flex; justify-content:space-between; align-items:center; gap:12px; flex-wrap:wrap; }
.brand{ display:flex; align-items:center; gap:10px; }
.tag{ font-size:12px; padding:4px 10px; border-radius:999px; background:#eef2ff; color:#1e2a6d; font-weight:700; }

.nav a{ margin-left: 12px; color:#111; text-decoration:none; opacity:.75; }
.nav a:hover{ opacity:1; text-decoration:underline; }

/* ===== Card / Tipografia ===== */
.card{
  background:#fff;
  border-radius:16px;
  padding:22px;
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
  margin-top: 16px;
}

h1{ font-size: 34px; line-height:1.15; margin:10px 0 12px; }
h2{ font-size: 22px; margin:0 0 12px; }
p{ margin: 10px 0; }

.muted{ color:#555; }
.small{ font-size: 12px; line-height:1.4; }
.lead{ font-size: 16px; line-height:1.6; }

.meta{ display:flex; align-items:center; gap:10px; margin-bottom:10px; }
.dot{ opacity:.5; }

.disclosure{
  background:#fff8e6;
  border:1px solid #ffe3a3;
  padding:10px 12px;
  border-radius:12px;
  font-size:13px;
  color:#5a4300;
}

.eyebrow{
  letter-spacing:.08em;
  text-transform:uppercase;
  font-weight:800;
  font-size:12px;
  color:#0b2a59;
  margin-top:14px;
}

/* ===== CTA ===== */
.ctaRow{ margin-top: 16px; display:flex; flex-direction:column; gap:10px; }
.btn{
  display:inline-block;
  background:#0b2a59;
  color:#fff;
  padding:14px 18px;
  border-radius:12px;
  text-decoration:none;
  font-weight:800;
  text-align:center;
}
.btn:hover{ filter: brightness(1.05); }
.btn.outline{
  background: transparent;
  color:#0b2a59;
  border:2px solid #0b2a59;
}

/* ===== Hero (texto + packshot) ===== */
.heroGrid{
  display:grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 18px;
  align-items:center;
}
@media (max-width: 900px){
  .heroGrid{ grid-template-columns: 1fr; }
}
.heroMedia{ display:flex; justify-content:center; }
.heroProductImg{
  width: 320px;
  max-width: 100%;
  height: auto;
  display:block;
  filter: drop-shadow(0 14px 22px rgba(0,0,0,.12));
}

/* ===== Video ===== */
/* Container simples (fallback / embed) */
.videoBox{
  width:100%;
  aspect-ratio: 16/9;
  border-radius:14px;
  overflow:hidden;
  background:#0f172a;
}
.videoBox iframe{ width:100%; height:100%; border:0; display:block; }
.videoFallback{ width:100%; height:100%; display:flex; align-items:center; justify-content:center; padding:18px; }

/* Player “limpo” via JS (yt.js) */
.ytPlayer{
  position:relative;
  border-radius:16px;
  overflow:hidden;
  background:#0b1325;
  aspect-ratio:16/9;
}
.ytStage{
  position:absolute;
  inset:0;
}
/* garante que o iframe inserido pelo JS preencha 100% */
.ytStage iframe{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  border:0;
  display:block;
}
.ytBtn{
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:64px;
  border:0;
  background:transparent;
  cursor:pointer;
  color:#fff;
  text-shadow:0 6px 24px rgba(0,0,0,.6);
}
.ytPlayer.is-playing .ytBtn{
  opacity:0;
  pointer-events:none;
}

/* ===== Bundle (oferta 3 frascos) ===== */
.bundleGrid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:24px;
  align-items:center;
}
@media (max-width: 900px){
  .bundleGrid{ grid-template-columns: 1fr; }
}

.bundleRightCard{
  width: 340px;
  max-width: 100%;
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 10px 22px rgba(0,0,0,.08);
  padding: 16px;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap: 10px;
  margin: 0 auto;
}

.bundleBottles{
  position:relative;
  width: 300px;
  height: 160px;
}
.bundleBottles .bottle{
  position:absolute;
  width: 116px;
  height:auto;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,.12));
}
.bundleBottles .b1{ left: 0;   top: 26px; transform: rotate(-7deg); }
.bundleBottles .b2{ left: 92px; top: 2px;  transform: rotate(2deg);  }
.bundleBottles .b3{ left: 184px; top: 28px; transform: rotate(8deg); }

.bundlePersonImg{
  width: 100%;
  height: 300px;
  border-radius: 22px;
  object-fit: cover;
  object-position: center top;
  display:block;
}

/* ===== Comparison table ===== */
.cmpWrap{ overflow:auto; border-radius:14px; border:1px solid #eef0f5; }
.cmp{ width:100%; border-collapse:collapse; min-width:720px; background:#fff; }
.cmp th, .cmp td{ padding:14px 12px; border-bottom:1px solid #eef0f5; vertical-align:top; }
.cmp thead th{ background:#fbfcff; font-weight:800; }
.cmpLabel{ width: 180px; }

/* ===== Testimonials ===== */
/* ===== Testimonials ===== */
.grid3{
  display:grid;
  gap:16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
@media (max-width: 900px){
  .grid3{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 620px){
  .grid3{ grid-template-columns: 1fr; }
}

.quote{
  border:1px solid #eef0f5;
  border-radius:14px;
  padding:14px;
  background:#fbfcff;
  overflow:hidden; /* evita texto/nome “vazar” */
}

.quoteHeader{
  display:flex;
  gap:12px;
  align-items:center;
  margin-bottom:10px;
  min-width:0;
}

.quoteAvatar{
  width:72px;
  height:72px;
  border-radius:18px;
  overflow:hidden;
  flex:0 0 auto;
  background:#e9edf6;
}
.quoteAvatar img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.quoteMetaBox{ min-width:0; line-height:1.2; }
.quoteName{ font-weight:800; }
.quoteCity{ color:#555; font-size:14px; }

.quoteText{
  font-size:14px;
  line-height:1.6;
  margin:0;
}

/* ===== Simple 2-column grid (used in quick summary) ===== */
.grid2{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 900px){
  .grid2{ grid-template-columns: 1fr; }
}

/* ===== Lists / FAQ / Footer ===== */
.bullets{ margin: 12px 0 0; padding-left: 18px; }
.bullets li{ margin: 8px 0; line-height:1.5; }

.faq{ display:flex; flex-direction:column; gap:10px; }
.faqItem{ border:1px solid #eef0f5; border-radius:14px; padding:10px 12px; }
.faqItem summary{ cursor:pointer; font-weight:800; list-style:none; }
.faqItem summary::-webkit-details-marker{ display:none; }
.faqBody{ margin-top:10px; color:#222; line-height:1.6; }

.footer{ margin-top: 18px; padding-bottom: 24px; }

/* ===== Responsive headlines ===== */
@media (max-width: 900px){
  h1{ font-size: 28px; }
}
