/* ====================================================
   IA MODEL CREATOR — CSS REFATORADO
   Fiel ao estilo do site de referência:
   Preto puro + Verde neon + Tipografia condensada impactante
   ==================================================== */

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

:root {
  --black: #0a0a0a;
  --black2: #111111;
  --black3: #161616;
  --black4: #1e1e1e;
  --neon: #B8FF00;
  --neon2: #CCFF00;
  --white: #ffffff;
  --gray: #888888;
  --gray2: #555555;
  --red: #FF4444;
  --border: rgba(184, 255, 0, 0.2);
  --border-dim: rgba(255,255,255,0.08);
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Barlow', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.container-narrow { max-width: 900px; margin: 0 auto; padding: 0 32px; }

/* ====== ANIMATIONS ====== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse-neon {
  0%, 100% { box-shadow: 0 0 20px rgba(184,255,0,0.3); }
  50% { box-shadow: 0 0 50px rgba(184,255,0,0.7), 0 0 80px rgba(184,255,0,0.3); }
}
@keyframes shimmer-bar {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* ====== TOPBAR ====== */
.topbar {
  background: var(--neon);
  color: #000;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.topbar-dot {
  width: 8px; height: 8px;
  background: #000;
  border-radius: 50%;
  animation: blink 1.5s ease infinite;
  flex-shrink: 0;
}
.topbar-btn {
  background: #000;
  color: var(--neon);
  padding: 4px 14px;
  border-radius: 4px;
  font-weight: 800;
  font-size: 12px;
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
  margin-left: 6px;
}
.topbar-btn:hover { background: #222; transform: scale(1.05); }

/* ====== NEON TEXT ====== */
.neon { color: var(--neon); }

/* ====== BUTTONS ====== */
.btn-neon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--neon);
  color: #000;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 18px 40px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.25s;
  animation: pulse-neon 3s ease infinite;
  cursor: pointer;
  border: none;
}
.btn-neon:hover {
  background: var(--neon2);
  transform: translateY(-2px) scale(1.02);
  animation: none;
  box-shadow: 0 10px 40px rgba(184,255,0,0.5);
}
.btn-full { width: 100%; font-size: 20px; padding: 22px 40px; }
.btn-xl { font-size: 22px; padding: 24px 60px; }
.btn-float { font-size: 15px; padding: 14px 28px; border-radius: 50px; }

/* ====== SECTION TITLES ====== */
.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 16px;
}
.section-title.center { text-align: center; }
.section-title.left { text-align: left; }

.section-desc {
  font-size: 17px;
  color: var(--gray);
  margin-bottom: 48px;
  line-height: 1.6;
}
.section-desc.center { text-align: center; }

/* ====== HERO ====== */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 40px);
  background: linear-gradient(135deg, #0a0a0a 0%, #0f1a00 100%);
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(184,255,0,0.04) 0%, transparent 60%);
  pointer-events: none;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 60px 80px 60px;
  position: relative;
  z-index: 1;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(184,255,0,0.1);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 6px 14px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--neon);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 24px;
  width: fit-content;
}

.hero-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(32px, 3.2vw, 40px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.04;
  letter-spacing: 0;
  color: var(--white);
  margin-bottom: 24px;
}

.hero-desc {
  font-size: 16px;
  color: var(--gray);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 24px;
}

.hero-cta-wrap {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}

.hero-badges {
  display: flex;
  gap: 20px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-stats {
  display: flex;
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--border-dim);
  flex-wrap: wrap;
}

.hstat { display: flex; flex-direction: column; gap: 4px; }
.hstat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 28px;
  font-weight: 900;
  color: var(--neon);
  line-height: 1;
}
.hstat-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ====== CAROUSEL ====== */
.hero-right {
  position: relative;
  overflow: hidden;
  background: var(--black2);
}

.carousel {
  position: absolute;
  inset: 0;
}

.carousel-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.carousel-slide.active { opacity: 1; }

.carousel-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* Fallback quando não há imagem real */
.carousel-slide:not(:has(img[src*="model"])) .carousel-img,
.carousel-img[src*="/img/model"] {
  background: linear-gradient(135deg, #1a1a0f, #0f1a00);
  min-height: 100%;
}

.slide-cta {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--neon);
  color: #000;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.2s;
}
.slide-cta:hover { background: var(--neon2); transform: translateX(-50%) scale(1.03); }
.small-cta { font-size: 12px; padding: 8px 16px; }

.carousel-counter {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(0,0,0,0.7);
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 4px;
  z-index: 10;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.6);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.carousel-btn:hover { background: var(--neon); color: #000; border-color: var(--neon); }
.carousel-btn.prev { left: 12px; }
.carousel-btn.next { right: 12px; }

.carousel-dots {
  position: absolute;
  bottom: 70px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 10;
}
.cdot {
  width: 8px;
  height: 4px;
  border-radius: 2px;
  background: rgba(255,255,255,0.3);
  transition: all 0.3s;
  cursor: pointer;
}
.cdot.active { background: var(--neon); width: 20px; }

/* ====== COMPARE SECTION ====== */
.compare-section {
  padding: 100px 0;
  background: var(--black);
}

.compare-title {
  font-size: clamp(34px, 3.2vw, 48px);
  white-space: nowrap;
}

.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}

.compare-card {
  background: var(--black2);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-dim);
}

.compare-card.compare-good {
  border-color: var(--border);
  box-shadow: 0 0 30px rgba(184,255,0,0.1);
}

.compare-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.compare-header.bad { background: rgba(255,68,68,0.1); color: var(--red); }
.compare-header.good { background: rgba(184,255,0,0.1); color: var(--neon); }
.compare-x { font-size: 16px; }
.compare-check { font-size: 12px; }

.compare-img-wrap {
  position: relative;
  height: 280px;
  background: #1a1a1a;
  overflow: hidden;
}

.compare-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.compare-error {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 24px;
  height: 100%;
  background: #1c1c1c;
  border: 1px solid #333;
  margin: 16px;
  border-radius: 8px;
}
.error-icon { font-size: 24px; color: var(--red); margin-bottom: 8px; }
.error-title { font-weight: 700; color: var(--white); margin-bottom: 8px; font-size: 15px; }
.error-text { font-size: 13px; color: var(--gray); line-height: 1.5; margin-bottom: 16px; }
.error-btns { display: flex; gap: 12px; font-size: 18px; color: var(--gray2); cursor: pointer; }

.compare-metrics {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.metric-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--white);
  margin-bottom: 4px;
}
.metric-pct { font-weight: 800; font-size: 15px; }
.bad-pct { color: var(--red); }
.good-pct { color: var(--neon); }
.metric-desc { font-size: 12px; color: var(--gray); margin-bottom: 6px; }
.metric-bar {
  height: 4px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
  overflow: hidden;
}
.bar-fill { height: 100%; border-radius: 2px; transition: width 1s ease; }
.bad-fill { background: var(--red); }
.good-fill { background: var(--neon); }

/* ====== GENERATE / GALLERY SECTION ====== */
.generate-section {
  padding: 100px 0;
  background: var(--black3);
}

.gallery-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--neon);
  margin-bottom: 16px;
  padding-left: 4px;
}

.gallery-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  margin-bottom: 48px;
}

.gallery-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  margin-bottom: 40px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  background: var(--black4);
  border-radius: 8px;
  aspect-ratio: 3/4;
  cursor: pointer;
}

.gallery-item.tall { aspect-ratio: 9/16; }

.gallery-item img,
.gallery-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
  /* Fallback para quando não tem imagem real */
  background: linear-gradient(135deg, #1a1a0f 0%, #0f1a00 100%);
  min-height: 200px;
}

.gallery-item:hover img,
.gallery-item:hover video { transform: scale(1.05); }

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  background: rgba(0,0,0,0.7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: white;
  transition: all 0.2s;
  backdrop-filter: blur(4px);
  pointer-events: none;
}
.gallery-item:hover .play-btn { background: var(--neon); color: #000; }
.video-item.is-playing .play-btn,
.video-item.has-video .ph-video { display: none; }

.gallery-hover-btn {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--neon);
  color: #000;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 10px;
  text-align: center;
  text-decoration: none;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
.gallery-item:hover .gallery-hover-btn { transform: translateY(0); }

.cta-center-wrap {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

/* ====== ADULT SECTION ====== */
.adult-section {
  padding: 100px 0;
  background: var(--black);
}

.adult-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.adult-question { color: var(--gray); font-size: 16px; margin-bottom: 8px; }
.adult-q { color: var(--white); font-size: 16px; font-style: italic; margin-bottom: 4px; }
.adult-sim { font-size: 28px; font-weight: 800; margin: 12px 0; display: block; }
.adult-text { color: var(--gray); font-size: 15px; line-height: 1.7; margin-bottom: 16px; }
.adult-bold { font-weight: 700; color: var(--white); font-size: 15px; margin-bottom: 12px; }

.adult-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
  padding-left: 0;
}
.adult-list li {
  color: var(--gray);
  font-size: 15px;
  line-height: 1.6;
  padding-left: 16px;
  position: relative;
}
.adult-list li::before { content: '•'; position: absolute; left: 0; color: var(--neon); }
.adult-list ul { margin-top: 8px; margin-left: 16px; }
.adult-list ul li::before { color: var(--gray2); }

.adult-img-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.adult-img-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  aspect-ratio: 3/4;
  background: var(--black4);
}

.adult-img-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
  background: linear-gradient(135deg, #1a1a0f, #0f1a00);
  min-height: 150px;
}
.adult-img-item:hover img { transform: scale(1.04); }

/* ====== STEPS SECTION ====== */
.steps-section {
  padding: 100px 0;
  background: var(--black2);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.step-card {
  background: var(--black3);
  border: 1px solid var(--border-dim);
  border-radius: 10px;
  padding: 28px 24px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.step-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--neon);
  transform: scaleX(0);
  transition: transform 0.3s;
}

.step-card:hover { border-color: var(--border); transform: translateY(-4px); }
.step-card:hover::before { transform: scaleX(1); }

.step-num-box {
  width: 44px;
  height: 44px;
  background: rgba(184,255,0,0.1);
  border: 1px solid var(--border);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--neon);
  margin-bottom: 16px;
}

.step-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--white);
  margin-bottom: 10px;
}

.step-desc { font-size: 14px; color: var(--gray); line-height: 1.6; }

/* ====== FOR WHOM ====== */
.forwhom-section {
  padding: 100px 0;
  background: var(--black);
}

.forwhom-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.fw-card {
  background: var(--black2);
  border: 1px solid var(--border-dim);
  border-radius: 10px;
  padding: 24px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.fw-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--neon);
  transform: scaleX(0);
  transition: transform 0.3s;
}

.fw-card:hover { border-color: var(--border); transform: translateY(-2px); }
.fw-card:hover::after { transform: scaleX(1); }

.fw-icon { font-size: 28px; margin-bottom: 14px; display: block; }
.fw-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.3;
}
.fw-desc { font-size: 14px; color: var(--gray); line-height: 1.5; }

/* ====== INSIDE SECTION ====== */
.inside-section {
  padding: 100px 0;
  background: var(--black3);
}

.inside-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 48px;
  align-items: stretch;
}

.inside-card {
  background: var(--black2);
  border: 1px solid var(--border-dim);
  border-radius: 10px;
  padding: 28px;
  transition: all 0.3s;
  min-height: 190px;
}
.inside-card:hover { border-color: var(--border); transform: translateX(4px); }

.inside-card-wide { grid-column: 1 / -1; }

.inside-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 40px;
  font-weight: 900;
  color: var(--neon);
  line-height: 1;
  margin-bottom: 8px;
}

.inside-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--white);
  margin-bottom: 8px;
}

.inside-desc { font-size: 14px; color: var(--gray); line-height: 1.6; }

/* ====== TESTIMONIALS ====== */
.testi-section {
  padding: 100px 0;
  background: var(--black);
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.testi-card {
  background: var(--black2);
  border: 1px solid var(--border-dim);
  border-radius: 10px;
  padding: 24px;
  position: relative;
  transition: all 0.3s;
}
.testi-card:hover { border-color: var(--border); transform: translateY(-4px); }

.testi-highlight {
  border-color: var(--border);
  background: linear-gradient(135deg, rgba(184,255,0,0.05), var(--black2));
}

.testi-badge {
  background: var(--neon);
  color: #000;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 12px;
}

.testi-stars {
  color: var(--neon);
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.testi-text {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-av {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 13px;
  flex-shrink: 0;
}

.testi-author strong { display: block; font-size: 14px; color: var(--white); font-family: 'Barlow Condensed', sans-serif; font-weight: 700; text-transform: uppercase; }
.testi-author small { font-size: 12px; color: var(--gray); }

/* ====== PRICING ====== */
.pricing-section {
  padding: 100px 0;
  background: var(--black3);
}

.pricing-box {
  background: var(--black2);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  margin-top: 48px;
  box-shadow: 0 0 60px rgba(184,255,0,0.1);
}

.pricing-top-bar {
  background: var(--neon);
  color: #000;
  text-align: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 10px;
}

.pricing-content { padding: 40px; }

.pricing-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 36px;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 6px;
}

.pricing-sub {
  color: var(--gray);
  font-size: 15px;
  margin-bottom: 32px;
}

.pricing-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border-dim);
}

.pi {
  font-size: 15px;
  color: var(--gray);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-family: 'Barlow', sans-serif;
}

.pi.neon-pi { color: var(--neon); }

.pricing-price {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 32px;
}

.price-old {
  color: var(--gray2);
  font-size: 18px;
  text-decoration: line-through;
}

.price-new { display: flex; flex-direction: column; }
.price-label { color: var(--gray); font-size: 14px; margin-bottom: 4px; }

.price-big {
  display: flex;
  align-items: flex-start;
  line-height: 1;
}

.price-cur {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--neon);
  margin-top: 8px;
}

.price-val {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 96px;
  font-weight: 900;
  color: var(--neon);
  line-height: 1;
}

.price-dec {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--neon);
  margin-top: 8px;
}

.price-parcel { font-size: 14px; color: var(--gray); margin-top: 6px; }

.pricing-trust {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border-dim);
}
.pricing-trust span { font-size: 13px; color: var(--gray); }

/* ====== GUARANTEE ====== */
.guarantee-section {
  padding: 80px 0;
  background: var(--black);
}

.guarantee-box {
  display: flex;
  align-items: center;
  gap: 40px;
  background: var(--black2);
  border: 2px solid rgba(184,255,0,0.3);
  border-radius: 16px;
  padding: 48px;
}

.guarantee-badge { font-size: 80px; flex-shrink: 0; filter: drop-shadow(0 0 20px rgba(184,255,0,0.3)); }

.guarantee-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 40px;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 16px;
}

.guarantee-text p {
  color: var(--gray);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 12px;
}

.guarantee-text p strong { color: var(--neon); }
.guarantee-text p:last-of-type { margin-bottom: 24px; }

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

.faq-list {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid var(--border-dim);
  overflow: hidden;
}

.faq-item.active { border-color: rgba(184,255,0,0.3); }

.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--white);
  text-align: left;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--neon); }

.faq-icon {
  font-size: 24px;
  color: var(--neon);
  transition: transform 0.3s;
  flex-shrink: 0;
  font-style: normal;
  font-weight: 300;
}

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

.faq-a {
  display: none;
  padding: 0 0 20px 0;
}
.faq-item.active .faq-a { display: block; }
.faq-a p { color: var(--gray); font-size: 16px; line-height: 1.7; }

/* ====== FINAL CTA ====== */
.final-section {
  padding: 120px 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #0f1a00 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(184,255,0,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.final-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 20px;
  position: relative;
}

.final-desc {
  color: var(--gray);
  font-size: 18px;
  margin-bottom: 36px;
  position: relative;
}

.final-price {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 48px;
  font-weight: 900;
  color: var(--neon);
  margin-bottom: 32px;
  position: relative;
}

.final-trust {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 24px;
  position: relative;
}
.final-trust span { font-size: 14px; color: var(--gray); }

/* ====== FOOTER ====== */
.footer {
  background: #050505;
  border-top: 1px solid var(--border-dim);
  padding: 60px 0 40px;
  text-align: center;
}

.footer-brand {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 24px;
  font-weight: 900;
  color: var(--neon);
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.footer-copy { color: var(--gray2); font-size: 14px; margin-bottom: 20px; }

.footer-socials {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 24px;
}

.footer-socials a {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-dim);
  border-radius: 50%;
  color: var(--neon);
  background: rgba(184,255,0,0.06);
  transition: transform 0.2s, border-color 0.2s, background 0.2s;
}

.footer-socials a:hover {
  transform: translateY(-2px);
  border-color: var(--neon);
  background: rgba(184,255,0,0.14);
}

.footer-socials svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--gray);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--neon); }

.footer-disc {
  color: var(--gray2);
  font-size: 12px;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ====== FLOATING CTA ====== */
.float-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
  pointer-events: none;
}
.float-cta.visible { opacity: 1; transform: translateY(0); pointer-events: all; }

/* ====== SCROLL REVEAL ====== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ====== RESPONSIVE ====== */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 60px 32px; }
  .hero-right { height: 500px; position: relative; }
  .compare-title { white-space: normal; }
  .compare-grid { grid-template-columns: 1fr; }
  .adult-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .testi-grid { grid-template-columns: 1fr 1fr; }
  .inside-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .hero-left { padding: 40px 24px; }
  .forwhom-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid-4 { grid-template-columns: 1fr 1fr; }
  .gallery-grid-3 { grid-template-columns: 1fr 1fr; }
  .adult-img-grid { grid-template-columns: 1fr 1fr; }
  .pricing-price { flex-direction: column; gap: 16px; }
  .guarantee-box { flex-direction: column; text-align: center; padding: 32px 24px; }
  .testi-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .topbar { font-size: 12px; gap: 8px; }
}

@media (max-width: 480px) {
  .forwhom-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 32px; }
  .btn-xl { font-size: 18px; padding: 18px 32px; }
  .adult-img-grid { grid-template-columns: 1fr 1fr; }
}

/* ====================================================
   PLACEHOLDERS — espaços para suas imagens/vídeos
   Substitua adicionando o arquivo na pasta img/
   ==================================================== */

.ph-slot {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: repeating-linear-gradient(
    -45deg,
    #111 0px, #111 10px,
    #141414 10px, #141414 20px
  );
  border: 2px dashed rgba(184,255,0,0.35);
  border-radius: 6px;
  position: absolute;
  inset: 0;
  text-align: center;
  padding: 16px;
  cursor: default;
  transition: border-color 0.3s, background 0.3s;
}

.ph-slot:hover {
  border-color: rgba(184,255,0,0.7);
  background: repeating-linear-gradient(
    -45deg,
    #141a00 0px, #141a00 10px,
    #161c00 10px, #161c00 20px
  );
}

/* Tipos coloridos por categoria */
.ph-carousel { border-color: rgba(184,255,0,0.4); }
.ph-compare  { border-color: rgba(184,255,0,0.4); }
.ph-video    { border-color: rgba(100,180,255,0.4); }
.ph-video:hover { border-color: rgba(100,180,255,0.8); }
.ph-img      { border-color: rgba(184,255,0,0.35); }
.ph-adult    { border-color: rgba(255,120,120,0.35); }
.ph-adult:hover { border-color: rgba(255,120,120,0.7); }

.ph-icon {
  font-size: 32px;
  line-height: 1;
  filter: grayscale(0.3);
}

.ph-name {
  font-family: 'Barlow Condensed', monospace;
  font-size: 13px;
  font-weight: 700;
  color: var(--neon);
  letter-spacing: 0.5px;
  word-break: break-all;
}

.ph-video .ph-name { color: #64b4ff; }
.ph-adult .ph-name { color: #ff8888; }

.ph-size {
  font-family: 'Barlow', sans-serif;
  font-size: 11px;
  color: var(--gray);
  letter-spacing: 0.5px;
}

/* Mantem todos os slides sobrepostos dentro da area visivel do hero */
.carousel-slide { position: absolute; }

/* Garantir que gallery-item e adult-img-item tenham position:relative */
.gallery-item,
.adult-img-item { position: relative; }

/* compare-img-wrap relativo */
.compare-img-wrap { position: relative; min-height: 280px; }
