/* ==========================================================================
   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-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: 60px 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);
}

.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #F59E0B;
  font-weight: 700;
  font-size: 0.875rem;
}

.site-header h1 {
  font-size: 2.35rem;
  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;
}

/* 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;
}

/* Week-by-Week Timeline (Section 4) */
.experience-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}

.exp-card {
  background-color: var(--bg-white);
  padding: 22px 24px;
  border-radius: var(--radius-cta);
  border-left: 4px solid var(--accent-pink);
  box-shadow: var(--shadow-sm);
  border-top: 1px solid var(--border-color);
  border-right: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

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

.exp-card h4 {
  font-size: 1.1rem;
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--headline-main);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.exp-card p {
  font-size: 1rem;
  color: var(--text-main);
  line-height: 1.65;
  margin-bottom: 0;
}

/* ==========================================================================
   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; }

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

.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: 16px 0 20px;
}

.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);
}

/* ==========================================================================
   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: 11px; /* Required exact 11px */
  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 h1 {
    font-size: 1.95rem;
  }
  
  .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;
  }
  
  .section-wrapper {
    padding: 45px 0;
  }
}
