/* =============================================
   flujo-libre — Sales Page Styles
   Modelado de bloodflowsecret.com — estrutura fiel
   ============================================= */

:root {
  --red:        #CC2A2A;
  --red-dark:   #8B0000;
  --text:       #1C1C1C;
  --text-light: #65676B;
  --bg:         #F0F2F5;
  --card-bg:    #FFFFFF;
  --border:     #CED0D4;
  --font-head:  'Montserrat', sans-serif;
  --font-body:  'Open Sans', sans-serif;
  --max-w:      680px;
  --radius:     8px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; }

/* ── PAGE WRAP ── */
.page-wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  background: var(--card-bg);
  padding-bottom: 32px;
}

/* ── HEADLINE ── */
.page-header {
  padding: 20px 16px 14px;
  text-align: center;
  background: var(--card-bg);
}
.main-headline {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 900;
  font-style: italic;
  color: var(--red);
  line-height: 1.15;
  margin-bottom: 8px;
}
.main-sub {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.35;
}

/* ── HERO ROW (VSL + DOCTOR) ── */
.hero-row {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0 12px 12px;
  background: var(--card-bg);
}

/* ── VIDEO ── */
.video-col { flex: 1; min-width: 0; }
.video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: #000;
  border-radius: var(--radius) var(--radius) 0 0;
  overflow: hidden;
  cursor: pointer;
}
.video-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.82;
  display: block;
  transition: opacity 0.2s;
}
.video-wrap:hover img { opacity: 0.65; }
.play-btn {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 72px;
  height: 72px;
  background: rgba(245, 166, 35, 0.92);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 5px;
  cursor: pointer;
  box-shadow: 0 4px 24px rgba(0,0,0,0.5);
  transition: transform 0.2s, background 0.2s;
}
.video-wrap:hover .play-btn {
  transform: scale(1.1);
  background: rgba(245, 166, 35, 1);
}

/* ── SOUND NOTICE ── */
.sound-notice {
  background: #FFF8E1;
  border: 1px solid #F9A825;
  border-top: none;
  border-radius: 0 0 var(--radius) var(--radius);
  padding: 9px 13px;
  font-size: 0.8rem;
  color: #5D4037;
  display: flex;
  align-items: flex-start;
  gap: 7px;
  line-height: 1.45;
}
.sound-icon { font-size: 1rem; flex-shrink: 0; margin-top: 1px; }

/* ── DOCTOR CARD ── */
.doctor-card {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 12px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-top: 10px;
}
.doctor-photo-wrap {
  flex-shrink: 0;
  width: 82px;
  height: 100px;
  border-radius: 6px;
  overflow: hidden;
  background: #ddd;
}
.doctor-photo { width: 100%; height: 100%; object-fit: cover; }
.doctor-name {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--red);
  margin-bottom: 2px;
}
.doctor-title {
  font-size: 0.76rem;
  color: var(--text-light);
  font-style: italic;
  margin-bottom: 9px;
  line-height: 1.35;
}
.doctor-creds {
  list-style: none;
  font-size: 0.75rem;
  color: var(--text);
  line-height: 2;
}

/* ── COMMENTS SECTION ── */
.comments-section {
  background: var(--card-bg);
  padding: 0 12px 12px;
  border-top: 1px solid var(--border);
  margin-top: 8px;
}
.comments-heading {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  padding: 14px 0 12px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 12px;
}

/* ── INDIVIDUAL COMMENT ── */
.comment {
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
}
.comment:last-child { margin-bottom: 0; }

.comment-avatar {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--av-color, #888);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.comment-body {
  background: #F0F2F5;
  border-radius: 0 var(--radius) var(--radius) var(--radius);
  padding: 9px 13px 8px;
  flex: 1;
  min-width: 0;
}
.comment-meta {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 5px;
}
.comment-name {
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text);
}
.comment-time {
  font-size: 0.73rem;
  color: var(--text-light);
}
.comment-body p {
  font-size: 0.88rem;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 7px;
}
.comment-likes {
  font-size: 0.78rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 4px;
}
.comment-likes span { font-size: 0.88rem; }

/* ── MEDIA BAR ── */
.media-bar {
  border-top: 1px solid var(--border);
  padding: 18px 12px 14px;
  text-align: center;
  background: var(--card-bg);
}
.media-label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-light);
  margin-bottom: 10px;
  opacity: 0.7;
}
.logos-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.media-logo {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-light);
  opacity: 0.45;
  font-style: italic;
}

/* ── FOOTER ── */
.site-footer {
  background: #F0F2F5;
  border-top: 1px solid var(--border);
  padding: 18px 16px;
  font-size: 0.72rem;
  color: #888;
  line-height: 1.6;
  text-align: center;
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.footer-links a { color: #999; }
.footer-links a:hover { color: #555; }
.footer-disclaimer,
.footer-medical { margin-bottom: 10px; }
.footer-copy { opacity: 0.5; margin-top: 8px; }

/* ── DESKTOP ── */
@media (min-width: 580px) {
  .main-headline { font-size: 2rem; }
  .main-sub { font-size: 1.05rem; }

  .hero-row {
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
  }

  .video-col { flex: 1; min-width: 0; }

  .doctor-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 190px;
    flex-shrink: 0;
    margin-top: 0;
    padding: 14px 10px;
  }
  .doctor-photo-wrap {
    width: 100%;
    height: 145px;
  }
  .doctor-creds { text-align: left; }
}
