/* ==========================================================================
   HIS SECRET OBSESSION - PRESELL REVIEW LANDING PAGE STYLESHEET
   Ultra-Fast (<2s Load Time), Single-Scroll, High-Compliance & High-Converting
   ========================================================================== */

:root {
  /* Exact Color Palette Required by User */
  --bg-white: #FFFFFF;
  --bg-gray: #F8F9FA;
  
  --text-main: #1A1A2E;      /* azul escuro quase preto - texto principal */
  --headline-main: #16213E;  /* azul escuro - headlines */
  --accent-pink: #E94560;    /* vermelho/rosa - destaques/CTA (cor emocional feminina) */
  --accent-pink-hover: #D13B53;
  --link-color: #0F3460;     /* links */
  
  --text-muted: #5A6075;
  --disclaimer-color: #666666; /* cor exata #666 exigida */
  --border-color: rgba(26, 26, 46, 0.08);
  
  /* Pros & Cons Accents */
  --pro-green: #059669;
  --pro-bg: #ECFDF5;
  --pro-border: #A7F3D0;
  --con-red: #DC2626;
  --con-bg: #FEF2F2;
  --con-border: #FECACA;

  /* Font Stacks Required by User */
  --font-headline: Georgia, serif;
  --font-body: system-ui, -apple-system, sans-serif;
  
  /* Shadows & Borders */
  --shadow-sm: 0 2px 5px rgba(26, 26, 46, 0.04);
  --shadow-md: 0 8px 24px rgba(26, 26, 46, 0.07);
  --shadow-lg: 0 18px 48px rgba(22, 33, 62, 0.11);
  --shadow-cta: 0 8px 20px rgba(233, 69, 96, 0.3);
  --radius-cta: 8px; /* Required exact border-radius: 8px */
  --radius-card: 12px;
  
  /* Transitions */
  --transition: 200ms ease;
}

/* Base Reset & Box Sizing */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-white);
  color: var(--text-main);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Layout Container - Maximum Width 720px Centered, Mobile Padding 20px */
.container {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 20px; /* Required: 20px nas laterais */
}

/* Top Announcement Banner */
.top-bar {
  background: var(--headline-main);
  color: #FFFFFF;
  font-size: 0.8125rem;
  font-weight: 600;
  text-align: center;
  padding: 10px 20px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border-bottom: 2px solid var(--accent-pink);
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.badge-verified {
  background-color: var(--accent-pink);
  color: white;
  font-size: 0.7rem;
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 700;
}

/* Typography Rules */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headline);
  color: var(--headline-main);
  line-height: 1.25;
  margin-bottom: 18px;
  font-weight: 700;
}

a {
  color: var(--link-color);
  text-decoration: underline;
  transition: color var(--transition);
}

a:hover {
  color: var(--accent-pink);
}

/* ==========================================================================
   HEADER SECTION (Background: #FFFFFF, Padding: 60px 0)
   ========================================================================== */
.site-header {
  background-color: var(--bg-white);
  padding: 48px 0;
  text-align: center;
  border-bottom: 1px solid var(--border-color);
}

.meta-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
  font-size: 0.875rem;
  color: var(--text-muted);
  flex-wrap: wrap;
}

.author-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-gray);
  padding: 6px 14px;
  border-radius: 50px;
  border: 1px solid var(--border-color);
  font-weight: 600;
  color: var(--text-main);
}

.author-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--accent-pink);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  font-family: var(--font-body);
}

.site-header h1 {
  font-size: 2.25rem;
  margin-bottom: 18px;
}

.site-header .subtitle {
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--text-main);
  margin: 0 auto;
  line-height: 1.6;
}

/* ==========================================================================
   SECTIONS WITH ALTERNATING BACKGROUNDS (#FFFFFF & #F8F9FA) & 60PX PADDING
   ========================================================================== */
.section-wrapper {
  padding: 60px 0; /* Required exact padding: 60px top e bottom */
  border-bottom: 1px solid var(--border-color);
}

.section-wrapper.bg-white {
  background-color: var(--bg-white);
}

.section-wrapper.bg-gray {
  background-color: var(--bg-gray);
}

.section-title {
  font-size: 1.75rem;
  color: var(--headline-main);
  margin-bottom: 20px;
}

.section-wrapper p {
  font-size: 1.05rem;
  color: var(--text-main);
  margin-bottom: 20px;
  line-height: 1.75;
}

.section-wrapper p:last-of-type {
  margin-bottom: 0;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--accent-pink);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Quick Verdict */
.quick-verdict-card {
  padding: 32px;
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-top: 4px solid var(--accent-pink);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-lg);
}

.verdict-heading {
  text-align: center;
  margin-bottom: 24px;
}

.verdict-heading .section-title {
  margin-bottom: 0;
}

.verdict-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.verdict-item {
  min-width: 0;
  padding: 14px 16px;
  background: var(--bg-gray);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-cta);
}

.verdict-item-wide {
  grid-column: 1 / -1;
}

.verdict-item dt {
  margin-bottom: 3px;
  color: var(--text-muted);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.verdict-item dd {
  color: var(--headline-main);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.section-wrapper .verdict-note {
  margin: 16px 0 0;
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.6;
  text-align: center;
}

/* Scannable situation and program-content lists */
.situation-list,
.content-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 24px 0;
}

.situation-list li,
.content-card {
  min-width: 0;
  padding: 16px 18px 16px 46px;
  position: relative;
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-cta);
  box-shadow: var(--shadow-sm);
  line-height: 1.55;
}

.section-wrapper.bg-white .situation-list li,
.section-wrapper.bg-white .content-card {
  background: var(--bg-gray);
}

.situation-list li::before,
.content-card::before {
  content: "✓";
  width: 22px;
  height: 22px;
  position: absolute;
  top: 17px;
  left: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-pink);
  color: #FFFFFF;
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 800;
}

.content-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.content-card strong {
  color: var(--headline-main);
  font-size: 1rem;
}

.content-card span {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Bullets List (Section 3) */
.benefit-list {
  list-style: none;
  margin: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  background-color: var(--bg-white);
  border-radius: var(--radius-cta);
  font-size: 1.025rem;
  color: var(--text-main);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.section-wrapper.bg-white .benefit-item {
  background-color: var(--bg-gray);
}

.benefit-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: var(--accent-pink);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 3px;
}

/* ==========================================================================
   PROS & CONS SECTION (Section 5)
   ========================================================================== */
.pros-cons-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 24px;
}

@media (min-width: 640px) {
  .pros-cons-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.pros-column, .cons-column {
  border-radius: var(--radius-cta);
  padding: 24px;
}

.pros-column {
  background-color: var(--pro-bg);
  border: 1.5px solid var(--pro-border);
}

.cons-column {
  background-color: var(--con-bg);
  border: 1.5px solid var(--con-border);
}

.column-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.column-header h3 {
  font-size: 1.2rem;
  margin-bottom: 0;
}

.pros-column .column-header h3 { color: var(--pro-green); }
.cons-column .column-header h3 { color: var(--con-red); }

.pros-list, .cons-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pros-list li, .cons-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-main);
  line-height: 1.55;
}

.pro-icon { color: var(--pro-green); flex-shrink: 0; margin-top: 3px; }
.con-icon { color: var(--con-red); flex-shrink: 0; margin-top: 3px; }

/* Audience fit */
.fit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 24px;
}

.fit-column {
  min-width: 0;
  padding: 24px;
  border-radius: var(--radius-card);
}

.fit-column-positive {
  background: var(--pro-bg);
  border: 1px solid var(--pro-border);
}

.fit-column-caution {
  background: var(--con-bg);
  border: 1px solid var(--con-border);
}

.fit-column h3 {
  margin-bottom: 16px;
  font-size: 1.2rem;
}

.fit-column-positive h3 {
  color: var(--pro-green);
}

.fit-column-caution h3 {
  color: var(--con-red);
}

.fit-column ul {
  padding-left: 20px;
}

.fit-column li {
  margin-bottom: 10px;
  line-height: 1.55;
}

.fit-column li:last-child {
  margin-bottom: 0;
}

/* Frequently asked questions */
.faq-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.faq-item {
  padding: 20px 22px;
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-cta);
  box-shadow: var(--shadow-sm);
}

.faq-item h3 {
  margin-bottom: 8px;
  font-family: var(--font-body);
  font-size: 1.05rem;
}

.section-wrapper .faq-item p {
  margin-bottom: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* ==========================================================================
   MAIN CTA BOX & BUTTON (Section 6)
   ========================================================================== */
.cta-box {
  text-align: center;
  padding-top: 0;
  padding-bottom: 0;
}

.cta-box .section-title {
  font-size: 1.85rem;
  margin-bottom: 20px;
}

/* Required CTA Button: background #E94560, texto branco, border-radius: 8px, padding 16px 32px, 18px font */
.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background-color: var(--accent-pink);
  color: #FFFFFF !important;
  font-family: var(--font-body);
  font-size: 18px; /* Required exact 18px */
  font-weight: 800;
  padding: 16px 32px; /* Required exact padding: 16px 32px */
  border-radius: var(--radius-cta); /* Required exact border-radius: 8px */
  text-decoration: none !important;
  box-shadow: var(--shadow-cta);
  transition: background-color var(--transition), transform var(--transition);
  border: none;
  cursor: pointer;
  max-width: 640px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin: 12px 0 8px;
  min-height: 56px;
  line-height: 1.3;
}

.btn-cta:hover, .btn-cta:focus {
  background-color: var(--accent-pink-hover);
  transform: translateY(-2px);
  color: #FFFFFF !important;
}

.guarantee-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 600;
}

.guarantee-badge svg {
  color: var(--pro-green);
}

.cta-actions {
  margin-top: 24px;
  text-align: center;
}

.cta-actions-inline {
  padding-top: 8px;
  border-top: 1px solid var(--border-color);
}

.affiliate-disclosure {
  max-width: 640px;
  margin: 0 auto 10px !important;
  color: var(--disclaimer-color) !important;
  font-size: 14px !important;
  line-height: 1.6 !important;
}

.section-wrapper .cta-note {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.8125rem;
  line-height: 1.5;
}

.final-verdict > p {
  max-width: 660px;
  margin-right: auto;
  margin-left: auto;
}

.final-verdict .guarantee-badge {
  margin-top: 18px;
}

/* ==========================================================================
   DISCLAIMER SECTION (Section 7)
   ========================================================================== */
.disclaimer-section {
  padding: 40px 0;
  border-top: 1px solid var(--border-color);
  background-color: var(--bg-white);
}

.disclaimer-text {
  font-size: 14px;
  color: var(--disclaimer-color); /* Required exact #666 */
  line-height: 1.65;
  text-align: center;
}

/* ==========================================================================
   FOOTER SECTION
   ========================================================================== */
.site-footer {
  background-color: var(--headline-main);
  color: #FFFFFF;
  padding: 40px 0;
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.footer-links a {
  color: #FFFFFF;
  text-decoration: none;
  font-size: 0.875rem;
  opacity: 0.9;
  transition: opacity var(--transition);
}

.footer-links a:hover {
  opacity: 1;
  text-decoration: underline;
  color: var(--accent-pink);
}

.footer-separator {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.875rem;
}

.copyright {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.75);
}

/* ==========================================================================
   RESPONSIVE & MOBILE RULES REQUIRED BY USER
   ========================================================================== */
@media (max-width: 640px) {
  /* Fonte reduzida em 10% no mobile (16px * 0.9 = 14.4px base font size) */
  html {
    font-size: 14.4px;
  }
  
  /* Padding: 20px nas laterais garantido pela .container */
  .container {
    padding: 0 20px;
  }

  .site-header {
    padding: 34px 0 32px;
  }

  .meta-info {
    gap: 6px;
    margin-bottom: 18px;
  }

  .author-badge {
    width: 100%;
    justify-content: center;
    padding: 5px 8px;
    border-radius: 6px;
    font-size: 12px;
    line-height: 1.4;
  }
  
  .site-header h1 {
    font-size: 1.85rem;
    margin-bottom: 14px;
  }

  .site-header .subtitle {
    font-size: 1rem;
    line-height: 1.55;
  }
  
  .section-title {
    font-size: 1.55rem;
  }
  
  /* Botão CTA com largura total (100%) no mobile */
  .btn-cta {
    width: 100% !important;
    max-width: 100% !important;
    text-align: center;
    padding: 16px 20px;
    font-size: 16px;
  }
  
  .section-wrapper {
    padding: 34px 0;
  }

  .quick-verdict-card {
    padding: 22px 18px;
  }

  .verdict-heading {
    margin-bottom: 18px;
  }

  .situation-list,
  .content-grid,
  .fit-grid {
    grid-template-columns: 1fr;
  }

  .verdict-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .verdict-item-wide {
    grid-column: 1 / -1;
  }

  .verdict-item {
    padding: 10px 11px;
  }

  .situation-list,
  .content-grid,
  .fit-grid,
  .faq-list {
    margin-top: 18px;
  }

  .situation-list,
  .content-grid {
    margin-bottom: 18px;
  }

  .situation-list li,
  .content-card {
    padding: 14px 16px 14px 44px;
  }

  .situation-list li::before,
  .content-card::before {
    top: 15px;
    left: 14px;
  }

  .pros-column,
  .cons-column,
  .fit-column {
    padding: 20px;
  }

  .faq-item {
    padding: 18px;
  }

  .cta-actions {
    margin-top: 20px;
  }

  .affiliate-disclosure {
    font-size: 14px !important;
  }
}
