/* ===== VARIABLES ===== */
:root {
  --primary: #ff4400;
  --primary-dark: #cc2200;
  --primary-light: #ff6a00;
  --accent: #ff8844;
  --dark: #0a0a0a;
  --dark-2: #1a1a1a;
  --dark-3: #2a2a2a;
  --text-white: #ffffff;
  --text-gray: #cccccc;
  --text-muted: #888888;
  --border: rgba(255,68,0,0.2);
  --success: #22c55e;
  --warning: #f59e0b;
}

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

body {
  font-family: 'Source Sans Pro', sans-serif;
  background: var(--dark);
  color: var(--text-white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  padding: 15px 0;
  transition: all 0.3s ease;
}

.header.scrolled {
  background: rgba(10,10,10,0.98);
  box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}

.logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 28px;
  font-weight: 900;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.nav {
  display: flex;
  gap: 30px;
}

.nav a {
  color: var(--text-gray);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
  position: relative;
}

.nav a:hover {
  color: var(--primary);
}

.cta-header {
  background: var(--primary);
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.cta-header:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

/* ===== HERO SECTION ===== */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--dark) 0%, #1a0800 50%, var(--dark) 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(255,80,0,0.08) 0%, transparent 60%),
    radial-gradient(circle at 80% 70%, rgba(255,40,0,0.05) 0%, transparent 60%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,60,0,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,60,0,0.03) 1px, transparent 1px);
  background-size: 50px 50px;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 500px;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 64px;
  font-weight: 900;
  line-height: 0.9;
  color: var(--primary);
  text-transform: uppercase;
  margin-bottom: 20px;
  text-shadow: 
    0 0 40px rgba(255,80,0,0.3),
    4px 4px 0px #5a1500;
}

.hero-content .subtitle {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--text-white);
  text-transform: uppercase;
  margin-bottom: 25px;
  letter-spacing: 2px;
}

.hero-content .description {
  font-size: 20px;
  color: var(--text-gray);
  margin-bottom: 35px;
  line-height: 1.5;
}

.hero-benefits {
  list-style: none;
  margin-bottom: 40px;
}

.hero-benefits li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 18px;
  font-weight: 600;
}

.hero-benefits li::before {
  content: '✓';
  background: var(--primary);
  color: white;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 900;
  flex-shrink: 0;
}

/* ===== VSL CONTAINER ===== */
.vsl-container {
  background: var(--dark-2);
  border: 3px solid var(--primary);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 60px rgba(255,68,0,0.2);
}

.vsl-video {
  width: 100%;
  height: 300px;
  background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.play-button {
  width: 80px;
  height: 80px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(255,68,0,0.4);
}

.play-button:hover {
  transform: scale(1.1);
  background: var(--primary-dark);
}

.play-button::after {
  content: '';
  width: 0;
  height: 0;
  border-left: 25px solid white;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  margin-left: 5px;
}

.vsl-title {
  background: var(--dark-3);
  padding: 20px;
  text-align: center;
}

.vsl-title h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--primary);
  text-transform: uppercase;
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.vsl-title p {
  color: var(--text-gray);
  font-weight: 600;
}

/* ===== SECTIONS ===== */
.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-header .tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 15px;
}

.section-header h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 48px;
  font-weight: 900;
  color: var(--text-white);
  text-transform: uppercase;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.section-header p {
  font-size: 20px;
  color: var(--text-gray);
  max-width: 600px;
  margin: 0 auto;
}

/* ===== BENEFÍCIOS ===== */
.benefits-section {
  padding: 100px 0;
  background: var(--dark-2);
  position: relative;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.benefit-card {
  background: var(--dark);
  border: 2px solid var(--border);
  border-radius: 12px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
}

.benefit-card:hover {
  border-color: var(--primary);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(255,68,0,0.15);
}

.benefit-icon {
  width: 80px;
  height: 80px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  position: relative;
}

.benefit-icon svg {
  width: 35px;
  height: 35px;
  color: white;
}

.benefit-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--text-white);
  text-transform: uppercase;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.benefit-card p {
  color: var(--text-gray);
  line-height: 1.6;
}

.benefit-number {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--primary);
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 14px;
}

/* ===== PRODUTO ===== */
.product-section {
  padding: 100px 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.product-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.product-images {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  position: relative;
}

.product-main {
  width: 300px;
  height: 400px;
  background: var(--dark-2);
  border: 3px solid var(--primary);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(255,68,0,0.2);
}

.product-main::before {
  content: '';
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
}

/* Imagem real do produto */
.product-bottle-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}

/* Fallback estilizado */
.product-bottle-placeholder {
  width: 140px;
  height: 220px;
  background: linear-gradient(180deg, #f0f0f0 0%, #d0d0d0 100%);
  border-radius: 15px 15px 40px 40px;
  position: relative;
  border: 2px solid rgba(255,255,255,0.3);
}

.product-label {
  width: 120px;
  height: 140px;
  background: linear-gradient(145deg, #2a2a2a 0%, #1a1a1a 50%, #000 100%);
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 2px solid var(--primary);
}

.product-label h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 900;
  color: var(--primary);
  text-transform: uppercase;
  text-align: center;
  line-height: 0.9;
  letter-spacing: 1px;
}

.product-label span {
  font-size: 12px;
  color: var(--accent);
  margin-top: 4px;
  font-weight: 600;
}

.product-box {
  width: 200px;
  height: 120px;
  background: var(--dark-3);
  border: 2px solid var(--primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 15px 35px rgba(0,0,0,0.5);
  position: relative;
}

/* Imagem real da caixa */
.product-box-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}

/* Fallback estilizado */
.product-box-placeholder {
  text-align: center;
}

.product-box-placeholder h5 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  font-weight: 900;
  color: var(--primary);
  text-transform: uppercase;
  line-height: 1;
}

.product-box-placeholder small {
  color: var(--text-gray);
  font-size: 10px;
  font-weight: 600;
}

/* Esconder imagens quando placeholders estão visíveis */
.product-bottle-img:not([src]), 
.product-box-img:not([src]),
.author-avatar-img:not([src]) {
  display: none;
}

.product-bottle-img[src] + .product-bottle-placeholder,
.product-box-img[src] + .product-box-placeholder,
.author-avatar-img[src] + .author-avatar-placeholder {
  display: none;
}

.product-info h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 52px;
  font-weight: 900;
  color: var(--primary);
  text-transform: uppercase;
  margin-bottom: 15px;
  line-height: 0.9;
  letter-spacing: -1px;
}

.product-info .tagline {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--text-white);
  text-transform: uppercase;
  margin-bottom: 30px;
  letter-spacing: 2px;
}

.product-info p {
  font-size: 18px;
  color: var(--text-gray);
  margin-bottom: 30px;
  line-height: 1.6;
}

.product-specs {
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 30px;
}

.product-specs h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--primary);
  text-transform: uppercase;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.spec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.spec-item {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-size: 14px;
}

.spec-item span:first-child {
  color: var(--text-gray);
  font-weight: 600;
}

.spec-item span:last-child {
  color: var(--primary);
  font-weight: 700;
}

/* ===== COMO FUNCIONA ===== */
.how-it-works {
  padding: 100px 0;
  background: var(--dark-2);
}

.steps-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.step-card {
  text-align: center;
  position: relative;
}

.step-card::after {
  content: '';
  position: absolute;
  top: 40px;
  right: -20px;
  width: 40px;
  height: 2px;
  background: var(--primary);
  opacity: 0.3;
}

.step-card:last-child::after {
  display: none;
}

.step-number {
  width: 80px;
  height: 80px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 32px;
  font-weight: 900;
  color: white;
  position: relative;
  z-index: 2;
}

.step-card h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--text-white);
  text-transform: uppercase;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.step-card p {
  color: var(--text-gray);
  line-height: 1.6;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: 100px 0;
  background: var(--dark);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.testimonial-card {
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 40px 30px;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  font-size: 80px;
  color: var(--primary);
  font-family: serif;
  position: absolute;
  top: 10px;
  left: 20px;
  opacity: 0.3;
}

.testimonial-content {
  font-size: 16px;
  color: var(--text-gray);
  line-height: 1.7;
  margin-bottom: 25px;
  position: relative;
  z-index: 2;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* Imagem real do autor */
.author-avatar-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

/* Fallback estilizado */
.author-avatar-placeholder {
  width: 50px;
  height: 50px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 18px;
  color: white;
}

.author-info h5 {
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 2px;
}

.author-info span {
  color: var(--text-muted);
  font-size: 14px;
}

/* ===== GARANTIA ===== */
.guarantee {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  text-align: center;
}

.guarantee h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 42px;
  font-weight: 900;
  color: white;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.guarantee p {
  font-size: 18px;
  color: rgba(255,255,255,0.9);
  max-width: 600px;
  margin: 0 auto 30px;
  line-height: 1.6;
}

.guarantee-badge {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  background: rgba(255,255,255,0.1);
  padding: 20px 40px;
  border-radius: 12px;
  margin-top: 20px;
}

.guarantee-icon {
  width: 60px;
  height: 60px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.guarantee-text {
  text-align: left;
}

.guarantee-text h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: white;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.guarantee-text span {
  color: rgba(255,255,255,0.8);
  font-size: 14px;
}

/* ===== PRICING ===== */
.pricing {
  padding: 100px 0;
  background: var(--dark);
  text-align: center;
}

.pricing-card {
  max-width: 500px;
  margin: 60px auto 0;
  background: var(--dark-2);
  border: 3px solid var(--primary);
  border-radius: 20px;
  padding: 50px 40px;
  position: relative;
  overflow: hidden;
}

.pricing-card::before {
  content: 'OFERTA ESPECIAL';
  position: absolute;
  top: 20px;
  right: -30px;
  background: var(--primary);
  color: white;
  padding: 8px 40px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 2px;
  transform: rotate(15deg);
}

.old-price {
  font-size: 24px;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-bottom: 10px;
}

.current-price {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 64px;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 20px;
}

.price-description {
  color: var(--text-gray);
  margin-bottom: 30px;
  font-size: 16px;
}

.cta-main {
  background: var(--primary);
  color: white;
  border: none;
  padding: 20px 40px;
  border-radius: 12px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 24px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.cta-main:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255,68,0,0.4);
}

.payment-info {
  color: var(--text-muted);
  font-size: 14px;
}

/* ===== FAQ ===== */
.faq {
  padding: 100px 0;
  background: var(--dark-2);
}

.faq-container {
  max-width: 800px;
  margin: 60px auto 0;
  padding: 0 20px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 15px;
  overflow: hidden;
}

.faq-question {
  background: var(--dark);
  border: none;
  width: 100%;
  padding: 25px 30px;
  text-align: left;
  color: var(--text-white);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  letter-spacing: 1px;
}

.faq-question:hover {
  background: var(--dark-3);
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  color: var(--primary);
  font-weight: 900;
}

.faq-answer {
  padding: 0 30px 25px;
  color: var(--text-gray);
  line-height: 1.6;
  display: none;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark-3);
  padding: 60px 0 30px;
  border-top: 1px solid var(--border);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.footer-section h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--primary);
  text-transform: uppercase;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.footer-section p,
.footer-section a {
  color: var(--text-gray);
  line-height: 1.8;
  text-decoration: none;
  display: block;
  margin-bottom: 8px;
}

.footer-section a:hover {
  color: var(--primary);
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
}

/* ===== RESPONSIVO ===== */
@media (max-width: 768px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 48px;
  }

  .product-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .nav {
    display: none;
  }

  .section-header h2 {
    font-size: 36px;
  }

  .product-info h2 {
    font-size: 40px;
  }

  .spec-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== ANIMAÇÕES ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-on-scroll {
  animation: fadeInUp 0.6s ease-out;
}

/* ===== SCROLL BEHAVIOR ===== */
html {
  scroll-behavior: smooth;
}
