/* Global Styles & Reset */
:root {
  --primary: #10B981;
  /* Emerald 500 */
  --primary-dark: #059669;
  /* Emerald 600 */
  --secondary: #F59E0B;
  /* Amber 500 */
  --secondary-glow: rgba(245, 158, 11, 0.4);
  --dark-bg: #0F172A;
  /* Slate 900 */
  --dark-card: #1E293B;
  /* Slate 800 */
  --text-light: #F8FAFC;
  /* Slate 50 */
  --text-gray: #94A3B8;
  /* Slate 400 */
  --gradient-gold: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
  --gradient-green: linear-gradient(135deg, #10B981 0%, #059669 100%);
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-glow: 0 0 20px rgba(16, 185, 129, 0.3);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', sans-serif;
  background-color: var(--dark-bg);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-padding {
  padding: 5rem 0;
}

/* Utilities */
.text-center {
  text-align: center;
}

.text-primary {
  color: var(--primary);
}

.text-secondary {
  color: var(--secondary);
}

.gradient-text {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.highlight {
  background: rgba(16, 185, 129, 0.1);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  color: var(--primary);
  font-weight: 600;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.125rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  border: none;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary {
  background: var(--gradient-green);
  color: white;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.6);
}

.btn-secondary {
  background: var(--gradient-gold);
  color: white;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.6);
}

.btn-pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(16, 185, 129, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 6rem 0;
  background: radial-gradient(circle at top right, rgba(16, 185, 129, 0.1), transparent 40%),
    radial-gradient(circle at bottom left, rgba(245, 158, 11, 0.05), transparent 40%);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.15;
  background-image: url('assets/hero-bg.png');
  background-size: cover;
  background-position: center;
  filter: blur(3px);
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-text h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-text p {
  font-size: 1.25rem;
  color: var(--text-gray);
  margin-bottom: 2.5rem;
}

.hero-image {
  position: relative;
}

.hero-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transform: perspective(1000px) rotateY(-10deg);
  transition: transform 0.5s ease;
  margin: 0 auto;
}

.hero-image img:hover {
  transform: perspective(1000px) rotateY(0deg);
}

/* Pain Points Section */
.pain-section {
  background: var(--dark-card);
  position: relative;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.pain-card {
  background: rgba(255, 255, 255, 0.03);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.pain-card:hover {
  border-color: rgba(255, 99, 71, 0.3);
  background: rgba(255, 99, 71, 0.05);
}

.pain-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

/* Solution Section */
.solution-section {
  background: var(--dark-bg);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-card {
  text-align: center;
  padding: 2rem;
  background: linear-gradient(145deg, #1e293b, #0f172a);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(16, 185, 129, 0.1);
}

.feature-number {
  font-size: 4rem;
  font-weight: 800;
  color: rgba(16, 185, 129, 0.1);
  line-height: 1;
  margin-bottom: -2rem;
  display: block;
}

.feature-title {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
  position: relative;
}

/* Modules Section */
.modules-section {
  background: #111;
}

.module-list {
  max-width: 800px;
  margin: 0 auto;
}

.module-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2rem;
  background: rgba(255, 255, 255, 0.03);
  padding: 1.5rem;
  border-radius: 10px;
  border-left: 4px solid var(--secondary);
}

.module-icon {
  font-size: 2rem;
  min-width: 50px;
  text-align: center;
}

/* Objection Handling */
.faq-section {
  background: var(--dark-card);
}

.accordion {
  max-width: 800px;
  margin: 0 auto;
}

.accordion-item {
  margin-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.accordion-header {
  padding: 1rem 0;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion-header::after {
  content: '+';
  font-weight: bold;
  color: var(--primary);
}

.accordion-content {
  padding-bottom: 1.5rem;
  color: var(--text-gray);
}

/* Offer Section */
.offer-section {
  background: radial-gradient(circle at center, rgba(16, 185, 129, 0.15), transparent 70%);
  text-align: center;
}

.price-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  padding: 3rem;
  border-radius: 20px;
  max-width: 600px;
  margin: 3rem auto;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

.price-strike {
  text-decoration: line-through;
  color: var(--text-gray);
  font-size: 1.5rem;
}

.price-final {
  font-size: 5rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  text-shadow: 0 0 20px rgba(16, 185, 129, 0.4);
}

.price-period {
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--text-light);
}

.guarantee-badge {
  margin-top: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: rgba(16, 185, 129, 0.1);
  padding: 1rem 2rem;
  border-radius: 50px;
  border: 1px solid var(--primary);
}

/* Footer */
footer {
  background: #050b14;
  padding: 3rem 0;
  text-align: center;
  color: var(--text-gray);
  font-size: 0.9rem;
}

/* Responsive */
/* --- Reveal Animation --- */
.reveal-hidden {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
  .hero {
    padding-top: 5rem;
    /* Menos padding no topo */
    padding-bottom: 2rem;
    align-items: flex-start;
    /* Alinha ao topo para caber tudo */
    min-height: auto;
    /* Remove altura mínima forçada */
  }

  .hero-bg {
    opacity: 0.2;
    /* Um pouco mais visível no mobile */
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1.5rem;
  }

  /* Hero Image Mobile Adjustment */
  .hero-image {
    order: -1;
    margin-bottom: 0.5rem;
  }

  .hero-image img {
    max-width: 220px;
    /* Reduzi o tamanho máximo */
    width: 60%;
    /* Ocupa no máximo 60% da largura */
    margin: 0 auto;
    /* Remove a rotação 3D pesada no mobile para ficar mais clean */
    transform: none;
  }

  .hero-text h1 {
    font-size: 2.2rem;
    line-height: 1.1;
    margin-bottom: 1rem;
  }

  .hero-text p {
    font-size: 1rem;
    line-height: 1.4;
    margin-bottom: 1.5rem;
  }

  .btn {
    width: 100%;
    /* Botões full width no mobile */
    padding: 1rem;
  }

  .price-final {
    font-size: 4rem;
  }
}

/* --- Profit Section --- */
.profit-section {
  background: linear-gradient(to bottom, var(--dark-bg), var(--dark-card));
}

.math-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 20px;
  padding: 2rem;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.math-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--gradient-green);
}

.math-row {
  display: flex;
  justify-content: space-between;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 1.1rem;
}

.math-row:last-child {
  border-bottom: none;
}

.math-highlight {
  background: rgba(16, 185, 129, 0.1);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2rem;
  text-align: center;
  border: 1px solid var(--primary);
}

.math-highlight h3 {
  color: var(--primary);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

/* --- Market Proof Section --- */
.news-section {
  background: var(--dark-bg);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

/* Atualizado para Imagens Reais */
.news-img-wrapper {
  aspect-ratio: 16/9;
  border-radius: 12px;
  overflow: hidden;
  border: 4px solid rgba(255, 255, 255, 0.05);
  /* Moldura sutil */
  transition: all 0.3s ease;
  position: relative;
}

.news-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Garante que o print preencha o espaço sem distorcer */
  transition: transform 0.5s ease;
}

.news-img-wrapper:hover {
  border-color: var(--primary);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.news-img-wrapper:hover img {
  transform: scale(1.05);
  /* Leve zoom ao passar o mouse */
  filter: brightness(1.1);
}

.news-caption {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #cbd5e1;
  background: rgba(255, 255, 255, 0.03);
  padding: 1.5rem;
  border-radius: 10px;
  border-left: 4px solid var(--secondary);
}

/* --- Lightbox Modal --- */
.lightbox-modal {
  display: none;
  /* Hidden by default */
  position: fixed;
  z-index: 2000;
  padding-top: 50px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(5px);
}

.lightbox-content {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 900px;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
  animation: zoomIn 0.3s;
}

@keyframes zoomIn {
  from {
    transform: scale(0)
  }

  to {
    transform: scale(1)
  }
}

.close-lightbox {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
  cursor: pointer;
}

.close-lightbox:hover,
.close-lightbox:focus {
  color: var(--primary);
  text-decoration: none;
  cursor: pointer;
}

#lightbox-caption {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  text-align: center;
  color: #ccc;
  padding: 10px 0;
  height: 150px;
}

/* Cursor de zoom na imagem original */
.news-img-wrapper {
  cursor: zoom-in;
}