/* HombreForte Control Total — Funnel Styles */
/* Mobile-first design for LATAM market (70%+ mobile traffic) */
/* Dark, masculine color scheme: blacks, deep blues, gold accents */

:root {
  --primary: #0D1B2A;
  --primary-light: #1B2838;
  --accent: #C9A84C;
  --accent-light: #E8D48B;
  --accent-dark: #A68A3E;
  --success: #28a745;
  --success-dark: #1e7e34;
  --warning: #ffc107;
  --danger: #dc3545;
  --dark: #0A0E17;
  --text: #E0E0E0;
  --text-light: #A0A8B4;
  --text-dark: #333333;
  --bg: #0D1117;
  --bg-section: #111822;
  --bg-card: #161D2A;
  --bg-card-alt: #1A2332;
  --white: #FFFFFF;
  --border: #2A3545;
  --border-light: #3A4555;
  --shadow: 0 4px 20px rgba(0,0,0,0.3);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.4);
  --shadow-glow: 0 0 30px rgba(201,168,76,0.15);
  --radius: 12px;
  --radius-sm: 8px;
  --max-width: 680px;
  --font: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

h1, h2, h3, h4 {
  line-height: 1.3;
  color: var(--white);
}

h1 { font-size: 1.75rem; margin-bottom: 1rem; }
h2 { font-size: 1.5rem; margin-bottom: 0.75rem; }
h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }

p { margin-bottom: 1rem; }

/* Urgency Bar */
.urgency-bar {
  background: linear-gradient(90deg, var(--accent-dark), var(--accent));
  color: var(--dark);
  text-align: center;
  padding: 10px 20px;
  font-size: 0.85rem;
  font-weight: 700;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 3rem 20px;
  background: linear-gradient(180deg, var(--dark) 0%, var(--primary) 100%);
  color: var(--white);
}

.hero h1 {
  color: var(--white);
  font-size: 1.85rem;
  margin-bottom: 1.25rem;
}

.hero .subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* VSL Embed Area */
.vsl-container {
  background: #000;
  border-radius: var(--radius);
  overflow: hidden;
  margin: 2rem auto;
  max-width: 600px;
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--border);
  box-shadow: var(--shadow-lg);
}

.vsl-container .vsl-placeholder {
  color: rgba(255,255,255,0.4);
  font-size: 0.9rem;
  text-align: center;
  padding: 2rem;
}

.vsl-container .vsl-placeholder .play-icon {
  font-size: 3rem;
  display: block;
  margin-bottom: 0.5rem;
}

/* CTA Buttons */
.btn-cta {
  display: inline-block;
  background: linear-gradient(135deg, var(--success), var(--success-dark));
  color: var(--white);
  font-size: 1.15rem;
  font-weight: 700;
  padding: 18px 36px;
  border-radius: 50px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(40,167,69,0.4);
  text-align: center;
  width: 100%;
  max-width: 420px;
  letter-spacing: 0.02em;
}

.btn-cta:hover {
  background: linear-gradient(135deg, #2dce56, var(--success));
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(40,167,69,0.5);
}

.btn-cta-large {
  font-size: 1.25rem;
  padding: 22px 40px;
}

.btn-cta-gold {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  box-shadow: 0 4px 15px rgba(201,168,76,0.4);
  color: var(--dark);
}

.btn-cta-gold:hover {
  background: linear-gradient(135deg, var(--accent-light), var(--accent));
  box-shadow: 0 6px 25px rgba(201,168,76,0.5);
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--text-light);
  font-size: 0.85rem;
  padding: 12px 24px;
  text-decoration: underline;
  border: none;
  cursor: pointer;
}

.btn-secondary:hover {
  color: var(--text);
}

.cta-subtext {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 0.75rem;
  text-align: center;
}

/* Trust Badges */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.25rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
}

.trust-badges span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* Social Proof Bar */
.social-proof-bar {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1rem 20px;
}

.social-proof-bar .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-item .stat-number {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--accent);
}

.stat-item .stat-label {
  font-size: 0.75rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Content Sections */
.section {
  padding: 3rem 20px;
}

.section-alt {
  background: var(--bg-section);
}

.section-dark {
  background: var(--dark);
}

.section-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.section-center {
  text-align: center;
}

/* Problem Agitation List */
.pain-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.pain-list li {
  padding: 0.75rem 0 0.75rem 2rem;
  position: relative;
  border-bottom: 1px solid var(--border);
  font-size: 1rem;
  color: var(--text);
}

.pain-list li::before {
  content: '\2014';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

/* Mechanism / Pillars */
.pillar-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 1rem;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--accent);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
}

.pillar-card h3 {
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.pillar-card p {
  margin-bottom: 0;
  color: var(--text-light);
}

/* Failed Solutions */
.failed-solution {
  margin-bottom: 1.5rem;
}

.failed-solution h3 {
  color: var(--danger);
  font-size: 1.1rem;
}

.failed-solution p {
  color: var(--text-light);
}

/* Program Structure Table */
.program-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.9rem;
}

.program-table th,
.program-table td {
  padding: 12px 10px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.program-table th {
  background: var(--bg-card);
  font-weight: 700;
  color: var(--accent);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.program-table td {
  color: var(--text-light);
}

.program-table td:first-child {
  font-weight: 700;
  color: var(--white);
  white-space: nowrap;
}

/* Testimonials */
.testimonial {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 1rem;
  position: relative;
}

.testimonial::before {
  content: '\201C';
  font-size: 3rem;
  color: var(--accent);
  opacity: 0.3;
  position: absolute;
  top: 0.5rem;
  left: 1rem;
  line-height: 1;
}

.testimonial p {
  font-style: italic;
  color: var(--text);
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
}

.testimonial .author {
  font-style: normal;
  font-weight: 700;
  color: var(--accent);
  font-size: 0.85rem;
  padding-left: 1.5rem;
}

/* Privacy Section */
.privacy-box {
  background: var(--bg-card);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
}

.privacy-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.privacy-list li {
  padding: 0.6rem 0 0.6rem 2rem;
  position: relative;
  color: var(--text);
  font-size: 0.95rem;
}

.privacy-list li::before {
  content: '\1F512';
  position: absolute;
  left: 0;
  font-size: 0.9rem;
}

/* Value Stack */
.value-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  margin-bottom: 0.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.value-item .details {
  flex: 1;
}

.value-item .details h4 {
  margin-bottom: 0.15rem;
  font-size: 0.95rem;
}

.value-item .details p {
  margin-bottom: 0;
  font-size: 0.8rem;
  color: var(--text-light);
}

.value-item .value-price {
  color: var(--accent);
  font-weight: 700;
  font-size: 0.95rem;
  white-space: nowrap;
  margin-left: 1rem;
}

/* Price Reveal */
.price-reveal {
  text-align: center;
  padding: 2.5rem 20px;
  background: linear-gradient(135deg, var(--bg-card), var(--bg-section));
  border: 2px solid var(--accent);
  border-radius: var(--radius);
  margin: 2rem 0;
  box-shadow: var(--shadow-glow);
}

.price-reveal .old-value {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.price-reveal .old-value s {
  color: var(--danger);
}

.price-reveal .price {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--accent);
  margin: 0.5rem 0;
  text-shadow: 0 0 20px rgba(201,168,76,0.3);
}

.price-reveal .price-sub {
  font-size: 1rem;
  color: var(--text-light);
}

/* Guarantee Box */
.guarantee-box {
  background: var(--bg-card);
  border: 2px solid var(--accent);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  margin: 2rem 0;
}

.guarantee-box .guarantee-badge {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 0.75rem;
  margin: 0 auto 1rem;
  text-align: center;
  line-height: 1.2;
  box-shadow: 0 0 20px rgba(201,168,76,0.3);
}

.guarantee-box h3 {
  color: var(--accent);
  margin-bottom: 1rem;
}

.guarantee-box p {
  font-size: 0.95rem;
  color: var(--text-light);
}

/* FAQ */
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 0;
}

.faq-item summary {
  font-weight: 700;
  cursor: pointer;
  font-size: 1rem;
  color: var(--white);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--accent);
  transition: transform 0.3s;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  margin-top: 0.75rem;
  color: var(--text-light);
  font-size: 0.95rem;
}

/* Payment Methods */
.payment-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin: 1.25rem 0;
}

.payment-badge {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 6px 12px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-light);
}

/* Checkout Form */
.checkout-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  margin: 2rem 0;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: var(--text);
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  background: var(--bg-section);
  color: var(--white);
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--accent);
  outline: none;
}

.form-group input::placeholder {
  color: var(--text-light);
}

/* Order Bump */
.order-bump {
  background: linear-gradient(135deg, rgba(201,168,76,0.08), rgba(201,168,76,0.03));
  border: 2px dashed var(--accent);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin: 1.5rem 0;
}

.order-bump-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.order-bump-header input[type="checkbox"] {
  width: 22px;
  height: 22px;
  accent-color: var(--accent);
  flex-shrink: 0;
}

.order-bump-header label {
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  color: var(--accent);
}

.order-bump-body {
  font-size: 0.9rem;
  color: var(--text-light);
}

.order-bump-body ul {
  margin: 0.75rem 0;
  padding-left: 1.25rem;
}

.order-bump-body li {
  margin-bottom: 0.4rem;
}

/* Summary Box */
.summary-box {
  background: var(--bg-card-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin: 1.5rem 0;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}

.summary-row:last-child {
  border-bottom: none;
}

.summary-row.total {
  font-weight: 900;
  font-size: 1.15rem;
  color: var(--accent);
  border-top: 2px solid var(--accent);
  margin-top: 0.5rem;
  padding-top: 0.75rem;
}

/* Upsell Page */
.upsell-header {
  text-align: center;
  padding: 2.5rem 20px;
  background: linear-gradient(180deg, var(--dark) 0%, var(--primary) 100%);
}

.upsell-header .confirmation {
  color: var(--success);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.upsell-product-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.upsell-product-list li {
  padding: 0.75rem 0 0.75rem 2rem;
  position: relative;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}

.upsell-product-list li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 700;
}

/* Thank You Page */
.thankyou-hero {
  text-align: center;
  padding: 3rem 20px;
  background: linear-gradient(180deg, var(--dark) 0%, #0A1F12 100%);
}

.thankyou-hero h1 {
  color: var(--success);
}

.steps-list {
  list-style: none;
  padding: 0;
  counter-reset: steps;
}

.steps-list li {
  counter-increment: steps;
  padding: 1.25rem;
  padding-left: 3.5rem;
  position: relative;
  margin-bottom: 0.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.steps-list li::before {
  content: counter(steps);
  position: absolute;
  left: 1rem;
  top: 1.25rem;
  width: 28px;
  height: 28px;
  background: var(--accent);
  color: var(--dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
}

/* Security Seal */
.security-seal {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 8px 16px;
  font-size: 0.8rem;
  color: var(--text-light);
}

/* Privacy Note */
.privacy-note {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-top: 1rem;
  text-align: center;
}

/* Highlight Text */
.highlight {
  color: var(--accent);
  font-weight: 700;
}

.highlight-success {
  color: var(--success);
  font-weight: 700;
}

/* Divider */
.section-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
}

/* Disclaimer Footer */
.disclaimer {
  background: var(--dark);
  border-top: 1px solid var(--border);
  padding: 2rem 20px;
  font-size: 0.75rem;
  color: var(--text-light);
  text-align: center;
}

/* Responsive */
@media (min-width: 768px) {
  h1 { font-size: 2.25rem; }
  h2 { font-size: 1.75rem; }

  .hero { padding: 4rem 20px; }
  .hero h1 { font-size: 2.5rem; }

  .section { padding: 4rem 20px; }

  .trust-badges {
    gap: 1.5rem;
  }

  .price-reveal .price {
    font-size: 4.5rem;
  }

  .social-proof-bar .container {
    gap: 3rem;
  }
}
