/* Modern, high-performance CSS for Método GTA VI Landing Page */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg-dark: #020617;
  --bg-slate: #090d16;
  --bg-card: #0f172a;
  --bg-card-hover: #1e293b;
  --border-slate: rgba(51, 65, 85, 0.7);
  --pink-accent: #ec4899;
  --purple-accent: #a855f7;
  --cyan-accent: #06b6d4;
  --emerald-accent: #10b981;
  --text-primary: #f8fafc;
  --text-secondary: #cbd5e1;
  --text-muted: #94a3b8;
  --font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
  font-family: var(--font-family);
  background-color: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  padding-bottom: 70px;
}

@media (min-width: 768px) {
  body {
    padding-bottom: 0;
  }
}

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.text-gradient {
  background: linear-gradient(135deg, #f472b6 0%, #c084fc 50%, #38bdf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 1rem 1.75rem;
  border-radius: 0.875rem;
  background: linear-gradient(90deg, #ec4899 0%, #9333ea 50%, #06b6d4 100%);
  color: #ffffff;
  font-weight: 900;
  font-size: 1.05rem;
  text-decoration: none;
  text-align: center;
  box-shadow: 0 10px 25px -5px rgba(236, 72, 153, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
  border: none;
}

.btn-cta:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 15px 30px -5px rgba(236, 72, 153, 0.4);
}

.btn-cta:active {
  transform: translateY(0) scale(0.98);
}

@media (min-width: 640px) {
  .btn-cta {
    width: auto;
  }
}

.top-banner {
  background: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border-slate);
  padding: 0.75rem 0;
  position: sticky;
  top: 0;
  z-index: 40;
}

.top-banner-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 800;
  font-size: 1.1rem;
  color: #ffffff;
}

.brand span {
  color: var(--pink-accent);
}

.badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.25rem 0.625rem;
  border-radius: 9999px;
  background: rgba(236, 72, 153, 0.15);
  border: 1px solid rgba(236, 72, 153, 0.3);
  color: #f472b6;
  font-size: 0.75rem;
  font-weight: 700;
}

.hero {
  padding: 3rem 0 2rem 0;
  text-align: center;
}

.hero-title {
  font-size: 2.25rem;
  font-weight: 900;
  line-height: 1.15;
  margin: 1.25rem 0;
  letter-spacing: -0.02em;
}

@media (min-width: 640px) {
  .hero-title {
    font-size: 3.25rem;
  }
}

.hero-subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 48rem;
  margin: 0 auto 1.5rem auto;
  line-height: 1.6;
}

@media (min-width: 640px) {
  .hero-subtitle {
    font-size: 1.2rem;
  }
}

.price-box {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.price-old {
  color: var(--text-muted);
  text-decoration: line-through;
  font-size: 0.9rem;
  font-weight: 600;
}

.price-new {
  padding: 0.375rem 0.875rem;
  border-radius: 0.75rem;
  background: rgba(236, 72, 153, 0.15);
  border: 1px solid rgba(236, 72, 153, 0.4);
  color: #f472b6;
  font-weight: 900;
  font-size: 1.15rem;
}

.hero-mockup-wrap {
  margin: 1.5rem auto 2.5rem auto;
  max-width: 46rem;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7);
  border: 1px solid var(--border-slate);
}

.hero-mockup-img {
  width: 100%;
  height: auto;
  display: block;
}

.section {
  padding: 3.5rem 0;
  border-top: 1px solid rgba(51, 65, 85, 0.4);
}

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-title {
  font-size: 1.75rem;
  font-weight: 900;
  margin-bottom: 0.5rem;
}

@media (min-width: 640px) {
  .section-title {
    font-size: 2.25rem;
  }
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 36rem;
  margin: 0 auto;
}

.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border-slate);
  border-radius: 1rem;
  padding: 1.5rem;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.card:hover {
  border-color: rgba(236, 72, 153, 0.4);
  transform: translateY(-2px);
}

.card-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.75rem;
  background: rgba(168, 85, 247, 0.15);
  color: #c084fc;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.card-title {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.card-desc {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Modules Grid (14 Modules) */
.modules-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .modules-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.module-card {
  background: var(--bg-card);
  border: 1px solid var(--border-slate);
  border-radius: 1rem;
  padding: 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: border-color 0.2s ease;
}

.module-card:hover {
  border-color: rgba(236, 72, 153, 0.4);
}

.module-badge {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.75rem;
  background: rgba(236, 72, 153, 0.15);
  color: #f472b6;
  font-weight: 900;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.module-cat {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--pink-accent);
  text-transform: uppercase;
}

.module-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: #ffffff;
}

/* 1:1 Video Box Without Borders */
.video-container-square {
  margin: 2.5rem auto;
  max-width: 24rem;
  border-radius: 1.25rem;
  overflow: hidden;
  background: #000;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
}

.video-aspect-square {
  position: relative;
  width: 100%;
  padding-bottom: 100%;
}

.video-aspect-square iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Showcase Carousel */
.carousel-track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding: 0.5rem 0 1.5rem 0;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.carousel-track::-webkit-scrollbar {
  height: 6px;
}
.carousel-track::-webkit-scrollbar-track {
  background: var(--bg-card);
  border-radius: 3px;
}
.carousel-track::-webkit-scrollbar-thumb {
  background: var(--border-slate);
  border-radius: 3px;
}

.carousel-item {
  scroll-snap-align: center;
  flex: 0 0 16rem;
  background: var(--bg-card);
  border: 1px solid var(--border-slate);
  border-radius: 1rem;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.carousel-item:hover {
  border-color: rgba(236, 72, 153, 0.5);
  transform: translateY(-3px);
}

.carousel-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #020617;
}

.carousel-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-hover-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.9), transparent);
  opacity: 0;
  transition: opacity 0.2s ease;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0.75rem;
}

.carousel-item:hover .carousel-hover-overlay {
  opacity: 1;
}

.carousel-caption {
  padding: 0.875rem 0.75rem;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-secondary);
  border-top: 1px solid rgba(51, 65, 85, 0.5);
}

/* Benefits Section */
.benefit-card {
  background: var(--bg-card);
  border: 1px solid var(--border-slate);
  border-radius: 1rem;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: border-color 0.2s ease;
}

.benefit-card:hover {
  border-color: rgba(236, 72, 153, 0.3);
}

.benefit-icon-box {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.25rem;
}

/* Steps Process */
.step-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-slate);
  border-radius: 1.25rem;
  padding: 1.5rem;
  overflow: hidden;
}

.step-num {
  position: absolute;
  top: 0.75rem;
  right: 1rem;
  font-size: 2.25rem;
  font-weight: 900;
  opacity: 0.2;
}

/* Bonus Cards */
.bonus-card {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(30, 27, 75, 0.5) 100%);
  border: 1px solid rgba(236, 72, 153, 0.3);
  border-radius: 1.25rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.5);
}

/* Guarantee Box */
.guarantee-box {
  background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 100%);
  border: 1px solid rgba(168, 85, 247, 0.3);
  border-radius: 1.25rem;
  padding: 2.25rem 1.5rem;
  text-align: center;
  max-width: 44rem;
  margin: 0 auto;
}

.guarantee-badge {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1rem auto;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.15);
  color: var(--emerald-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

/* Pre-FAQ Checklist */
.prefaq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  max-width: 40rem;
  margin: 1.5rem auto 0 auto;
}

@media (min-width: 640px) {
  .prefaq-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.prefaq-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid var(--border-slate);
  border-radius: 0.875rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.prefaq-item span.check {
  color: var(--emerald-accent);
  font-size: 1.1rem;
}

/* Offer Breakdown Box */
.offer-box {
  background: linear-gradient(180deg, #0f172a 0%, rgba(30, 27, 75, 0.4) 100%);
  border: 1px solid rgba(236, 72, 153, 0.4);
  border-radius: 1.5rem;
  padding: 2rem 1.5rem;
  max-width: 46rem;
  margin: 0 auto;
  box-shadow: 0 25px 50px -12px rgba(236, 72, 153, 0.15);
  text-align: center;
}

.offer-checklist {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  text-align: left;
  margin: 1.5rem 0;
  padding: 1.25rem;
  background: rgba(2, 6, 23, 0.6);
  border-radius: 1rem;
  border: 1px solid var(--border-slate);
}

@media (min-width: 640px) {
  .offer-checklist {
    grid-template-columns: repeat(2, 1fr);
  }
}

.offer-check-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.offer-check-item span.icon {
  color: var(--emerald-accent);
}

/* Accordion FAQ */
.faq-list {
  max-width: 44rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-slate);
  border-radius: 0.875rem;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-weight: 700;
  font-size: 0.95rem;
  text-align: left;
  cursor: pointer;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 1.25rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 15rem;
  padding: 0 1.25rem 1rem 1.25rem;
}

.faq-icon {
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

/* Sticky Mobile Bar */
.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--border-slate);
  padding: 0.625rem 1rem;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .sticky-bar {
    display: none;
  }
}

.sticky-bar-price {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.sticky-bar-price strong {
  font-size: 1.1rem;
  color: #ffffff;
}

.sticky-bar .btn-cta {
  padding: 0.625rem 1.25rem;
  font-size: 0.9rem;
  width: auto;
}

/* Modal Zoom */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(5px);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  background: var(--bg-card);
  border: 1px solid var(--border-slate);
  border-radius: 1rem;
  max-width: 32rem;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 1.25rem;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #fff;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 0.75rem;
  margin-bottom: 1rem;
}

.modal-title {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 1rem;
  text-align: center;
}

/* Footer */
footer {
  text-align: center;
  padding: 2.5rem 0;
  color: var(--text-muted);
  font-size: 0.8rem;
  border-top: 1px solid var(--border-slate);
}
