/* ========================================
   MOLDES DE FOAMI EVA – style.css
   ======================================== */

/* ---- Reset & Base ---- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --color-bg:          #0f0b1a;
  --color-surface:     #1a1430;
  --color-surface2:    #211a3d;
  --color-border:      rgba(180,130,255,0.15);

  --color-primary:     #c84fff;
  --color-primary-glow:#a020f0;
  --color-accent:      #ff6fd8;
  --color-gold:        #f5c842;
  --color-green:       #3ddc84;
  --color-red:         #ff4d6d;
  --color-white:       #ffffff;
  --color-muted:       rgba(255,255,255,0.55);

  --gradient-hero:     linear-gradient(160deg, #1b0933 0%, #0f0b1a 60%, #1a0a2e 100%);
  --gradient-btn:      linear-gradient(135deg, #e040fb 0%, #9c27b0 100%);
  --gradient-btn-hover:linear-gradient(135deg, #ff6fef 0%, #c44dff 100%);
  --gradient-premium:  linear-gradient(160deg, #1b2a4a 0%, #0d1a35 100%);
  --gradient-gold:     linear-gradient(90deg, #f5c842 0%, #ffab00 100%);

  --font-display: 'Poppins', sans-serif;
  --font-body:    'Nunito', sans-serif;

  --radius-card:   20px;
  --radius-btn:    50px;
  --shadow-card:   0 8px 40px rgba(0,0,0,0.45);
  --shadow-glow:   0 0 30px rgba(200,79,255,0.35);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-white);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: 100%;
  max-width: 780px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---- Tipografia ---- */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 5vw, 2.4rem);
  font-weight: 800;
  text-align: center;
  line-height: 1.25;
  margin-bottom: 40px;
  letter-spacing: -0.5px;
}

.highlight {
  background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---- Botões ---- */
.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1rem, 3.5vw, 1.2rem);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 18px 36px;
  border-radius: var(--radius-btn);
  cursor: pointer;
  border: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
  max-width: 480px;
}

.btn:hover {
  transform: translateY(-3px) scale(1.02);
}

.btn:active {
  transform: scale(0.97);
}

/* Pulsante animazione */
@keyframes pulse-glow {
  0%   { box-shadow: 0 0 0 0 rgba(200, 79, 255, 0.55); }
  50%  { box-shadow: 0 0 0 16px rgba(200, 79, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(200, 79, 255, 0); }
}

@keyframes pulse-gold {
  0%   { box-shadow: 0 0 0 0 rgba(245, 200, 66, 0.6); }
  50%  { box-shadow: 0 0 0 16px rgba(245, 200, 66, 0); }
  100% { box-shadow: 0 0 0 0 rgba(245, 200, 66, 0); }
}

.btn--pulse {
  animation: pulse-glow 2.2s infinite;
}

.btn--hero {
  background: var(--gradient-btn);
  color: var(--color-white);
  font-size: clamp(1.1rem, 4vw, 1.35rem);
  padding: 20px 40px;
  box-shadow: 0 8px 30px rgba(200,79,255,0.45);
}

.btn--secondary {
  background: var(--gradient-btn);
  color: var(--color-white);
  box-shadow: 0 8px 25px rgba(200,79,255,0.35);
}

.btn--plan {
  font-size: clamp(1rem, 3.5vw, 1.15rem);
  padding: 18px 30px;
}

.btn--basic-cta {
  background: var(--gradient-btn);
  color: var(--color-white);
  box-shadow: 0 8px 25px rgba(200,79,255,0.35);
}

.btn--premium-cta {
  background: var(--gradient-gold);
  color: #1a0a2e;
  animation: pulse-gold 2.2s infinite;
  box-shadow: 0 8px 25px rgba(245,200,66,0.4);
}

.btn--guarantee {
  background: var(--gradient-btn);
  color: var(--color-white);
  box-shadow: 0 8px 25px rgba(200,79,255,0.35);
}

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

/* ========================================
   BARRA PROMO / COUNTDOWN
   ======================================== */
.promo-bar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: linear-gradient(90deg, #b30000 0%, #d40000 50%, #b30000 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 14px;
  text-align: center;
}

.promo-bar__text {
  font-family: var(--font-display);
  font-size: 0.82rem;
  color: #fff;
  letter-spacing: 0.2px;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.promo-bar__text strong {
  font-weight: 900;
}

.promo-bar__timer {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.76rem;
  font-weight: 900;
  color: #fff;
  background: rgba(0,0,0,0.28);
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 5px;
  padding: 1px 7px;
  letter-spacing: 2px;
  white-space: nowrap;
  vertical-align: middle;
  margin-left: 2px;
}

/* ========================================
   SEÇÃO HERO
   ======================================== */
.hero {
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
  padding: 60px 0 70px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(160,32,240,0.18) 0%, transparent 70%);
  pointer-events: none;
}

.hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 28px;
  position: relative;
  z-index: 1;
}

.hero__badge {
  background: rgba(200,79,255,0.18);
  border: 1px solid rgba(200,79,255,0.4);
  color: var(--color-primary);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 8px 22px;
  border-radius: 50px;
}

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 8vw, 3.2rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -1px;
}

.hero__image-wrap {
  width: 100%;
  max-width: 520px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6), 0 0 60px rgba(160,32,240,0.25);
}

.hero__image {
  width: 100%;
  object-fit: cover;
  border-radius: 20px;
  transition: transform 0.6s ease;
}

.hero__image:hover {
  transform: scale(1.02);
}

/* ========================================
   SEÇÃO PROVA SOCIAL
   ======================================== */
.social-proof {
  background: var(--color-surface);
  padding: 70px 0;
  position: relative;
}

.social-proof::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c84fff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.social-proof__title {
  position: relative;
  z-index: 1;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}

.testimonial-placeholder {
  background: var(--color-surface2);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-placeholder:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(200,79,255,0.2);
}

.stars {
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  font-style: italic;
  line-height: 1.6;
}

.testimonial-author {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--color-primary);
}

/* ========================================
   SEÇÃO INSIDE LOOK
   ======================================== */
.inside-look {
  background: var(--color-bg);
  padding: 70px 0;
}

.inside-look__title {
  /* inherit section-title */
}

.video-wrap {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6), 0 0 50px rgba(160,32,240,0.2);
}

/* ========================================
   SEÇÃO OFERTA
   ======================================== */
.offer {
  background: var(--color-surface);
  padding: 70px 0 80px;
}

.offer__title {
  /* inherit */
}

/* Plan Card */
.plan-card {
  background: var(--color-surface2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  position: relative;
  transition: transform 0.3s ease;
  margin-bottom: 30px;
}

.plan-card:hover {
  transform: translateY(-4px);
}

.plan-card--premium {
  background: var(--gradient-premium);
  border-color: rgba(245,200,66,0.35);
  box-shadow: 0 8px 50px rgba(0,0,0,0.5), 0 0 40px rgba(245,200,66,0.1);
}

.plan-card__badge-top {
  background: var(--gradient-gold);
  color: #1a0a2e;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.8rem;
  text-align: center;
  letter-spacing: 0.5px;
  padding: 10px 16px;
  text-transform: uppercase;
}

.plan-card__image-wrap {
  width: 100%;
  background: linear-gradient(160deg, #1b0933 0%, #0f0b1a 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 24px 16px;
}

.plan-card__image {
  max-width: 320px;
  width: 90%;
  margin: 0 auto;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.5);
  transition: transform 0.4s ease;
}

.plan-card__image:hover {
  transform: scale(1.04);
}

.plan-card__body {
  padding: 30px 28px 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.plan-card__header {
  text-align: center;
}

.plan-card__name {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--color-white);
}

.plan-card__name--premium {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.plan-card__subtitle {
  font-size: 0.85rem;
  color: var(--color-muted);
  margin-top: 4px;
}

/* Features list */
.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.plan-features__item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 600;
}

.plan-features__item--premium-extra {
  color: var(--color-green);
}

.check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: rgba(200,79,255,0.18);
  border: 1.5px solid var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: var(--color-primary);
  font-weight: 900;
}

.check--green {
  background: rgba(61,220,132,0.15);
  border-color: var(--color-green);
  color: var(--color-green);
}

.badge-included {
  margin-left: auto;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: rgba(61,220,132,0.2);
  border: 1px solid var(--color-green);
  color: var(--color-green);
  padding: 2px 8px;
  border-radius: 50px;
  white-space: nowrap;
}

/* Plan extras (riscado) */
.plan-extras {
  border-top: 1px solid var(--color-border);
  padding-top: 16px;
}

.plan-extras__label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-muted);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.plan-extras__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.plan-extras__list li {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.35);
}

.plan-extras__list li s {
  text-decoration: line-through;
  text-decoration-color: rgba(255,77,109,0.6);
}

/* Preço */
.plan-price {
  text-align: center;
  padding: 16px;
  background: rgba(0,0,0,0.25);
  border-radius: 12px;
  border: 1px solid var(--color-border);
}

.plan-price--premium {
  border-color: rgba(245,200,66,0.25);
  background: rgba(245,200,66,0.06);
}

.plan-price__from {
  font-size: 0.85rem;
  color: var(--color-muted);
  text-decoration: line-through;
}

.plan-price__now {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--color-white);
  line-height: 1;
  margin: 4px 0;
}

.plan-price--premium .plan-price__now {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.plan-price__currency {
  font-size: 1.5rem;
  vertical-align: top;
  margin-top: 6px;
  display: inline-block;
}

.plan-price__period {
  font-size: 1.2rem;
}

.plan-price__type {
  font-size: 0.8rem;
  color: var(--color-muted);
  margin-top: 6px;
}

.plan-card__note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--color-muted);
}

/* Separador */
.plans-separator {
  text-align: center;
  position: relative;
  margin: 10px 0 30px;
}

.plans-separator::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--color-border);
}

.plans-separator span {
  position: relative;
  background: var(--color-surface);
  padding: 0 16px;
  color: var(--color-muted);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ========================================
   SEÇÃO GARANTIA
   ======================================== */
.guarantee {
  background: var(--color-bg);
  padding: 70px 0;
}

.guarantee__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
  text-align: center;
}

.guarantee__image-wrap {
  width: 100%;
  max-width: 260px;
  filter: drop-shadow(0 12px 30px rgba(200,79,255,0.35));
  transition: transform 0.4s ease;
}

.guarantee__image-wrap:hover {
  transform: scale(1.04) rotate(-1deg);
}

.guarantee__image {
  width: 100%;
}

.guarantee__title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 900;
  margin-bottom: 12px;
  background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.guarantee__body {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.82);
  max-width: 520px;
}

/* ========================================
   SEÇÃO FAQ
   ======================================== */
.faq {
  background: var(--color-surface);
  padding: 70px 0 80px;
}

.faq__title {
  /* inherit */
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq__item {
  background: var(--color-surface2);
  border: 1px solid var(--color-border);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.faq__item.active {
  border-color: rgba(200,79,255,0.45);
  box-shadow: 0 4px 20px rgba(200,79,255,0.15);
}

.faq__question {
  width: 100%;
  background: none;
  border: none;
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  text-align: left;
  padding: 18px 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: color 0.2s ease;
  line-height: 1.4;
}

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

.faq__icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(200,79,255,0.15);
  border: 1.5px solid rgba(200,79,255,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--color-primary);
  transition: transform 0.35s ease, background 0.3s ease;
  line-height: 1;
}

.faq__item.active .faq__icon {
  transform: rotate(45deg);
  background: rgba(200,79,255,0.3);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease, padding 0.3s ease;
}

.faq__answer p {
  padding: 0 20px 20px;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.75;
}

.faq__item.active .faq__answer {
  max-height: 400px;
}

.faq__cta {
  margin-top: 48px;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: #070511;
  padding: 30px 20px;
  text-align: center;
  border-top: 1px solid var(--color-border);
}

.footer__copy {
  font-size: 0.85rem;
  color: var(--color-muted);
  margin-bottom: 8px;
}

.footer__disclaimer {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ========================================
   RESPONSIVE – MOBILE FIRST
   ======================================== */
@media (max-width: 600px) {
  .hero {
    padding: 48px 0 56px;
  }


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

  .plan-card__body {
    padding: 24px 18px 30px;
  }

  .plan-card__name {
    font-size: 1.4rem;
  }

  .plan-price__now {
    font-size: 2.4rem;
  }

  .guarantee__inner {
    gap: 28px;
  }

  .faq__question {
    font-size: 0.92rem;
    padding: 16px 16px;
  }

  .faq__answer p {
    padding: 0 16px 16px;
  }

  .section-title {
    font-size: 1.5rem;
  }
}

@media (min-width: 601px) and (max-width: 900px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.hero__inner > * {
  animation: fadeInUp 0.7s ease both;
}

.hero__badge        { animation-delay: 0.05s; }
.hero__headline     { animation-delay: 0.15s; }
.hero__image-wrap   { animation-delay: 0.3s; }
.btn--hero          { animation-delay: 0.45s; }

/* Scroll reveal placeholder (handled by JS IntersectionObserver) */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
