/* ============================================================
   AMAZOLÉ - Landing Page Stylesheet
   Premium Green Glassmorphism Design
   ============================================================ */

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

:root {
  /* Green Gradient Palette */
  --green-900: #0a2e1a;
  --green-800: #0f4026;
  --green-700: #155c34;
  --green-600: #1a7843;
  --green-500: #22a05b;
  --green-400: #34c96e;
  --green-300: #5dde93;
  --green-200: #9aecc0;
  --green-100: #d4f7e7;

  --accent-gold: #f0c060;
  --accent-gold-light: #f9dd8a;
  --wa-green: #25d366;
  --wa-green-dark: #128c7e;

  --text-white: #ffffff;
  --text-light: rgba(255, 255, 255, 0.87);
  --text-muted: rgba(255, 255, 255, 0.55);

  --glass-bg: rgba(255, 255, 255, 0.10);
  --glass-border: rgba(255, 255, 255, 0.18);
  --glass-blur: 18px;
  --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.22);

  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-xl: 48px;

  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  --font-main: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
}

html {
  scroll-behavior: smooth;
}

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

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

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

summary {
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Glassmorphism ---------- */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  box-shadow: var(--glass-shadow);
}

/* ---------- Gradient Background Blobs ---------- */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.45;
}

.blob-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #22a05b 0%, transparent 70%);
  top: -200px;
  right: -150px;
  animation: blobFloat 10s ease-in-out infinite;
}

.blob-2 {
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, #0f4026 0%, transparent 70%);
  bottom: 0;
  left: -120px;
  animation: blobFloat 13s ease-in-out infinite reverse;
}

.blob-3 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #34c96e 0%, transparent 70%);
  top: 50%;
  right: -200px;
  animation: blobFloat 11s ease-in-out infinite;
}

@keyframes blobFloat {

  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-30px) scale(1.05);
  }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-main);
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  border-radius: 100px;
  text-align: center;
}

.btn-cta {
  background: linear-gradient(135deg, var(--wa-green) 0%, var(--wa-green-dark) 100%);
  color: #fff;
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.45);
}

.btn-cta:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.6);
}

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

.btn-xl {
  padding: 20px 40px;
  font-size: 1.08rem;
  letter-spacing: 0.02em;
}

.btn-sm {
  padding: 12px 24px;
  font-size: 0.88rem;
}

/* Pulse animation */
.pulse {
  animation: ctaPulse 2.5s ease-in-out infinite;
}

@keyframes ctaPulse {

  0%,
  100% {
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.45);
  }

  50% {
    box-shadow: 0 8px 50px rgba(37, 211, 102, 0.8), 0 0 0 12px rgba(37, 211, 102, 0.08);
  }
}

/* WhatsApp icon */
.icon-wa {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

/* ---------- URGENCY BAR ---------- */
.urgency-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1100;
  background: linear-gradient(90deg, #a00016 0%, #d00025 50%, #a00016 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 14px;
  padding: 9px 24px;
  font-size: 0.82rem;
  font-family: var(--font-main);
  font-weight: 600;
  text-align: center;
  box-shadow: 0 2px 20px rgba(160, 0, 22, 0.5);
}

.ub-icon {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  color: #f9dd8a;
}

.ub-timer {
  font-size: 1rem;
  font-weight: 900;
  background: #fff;
  color: #a00016;
  padding: 2px 10px;
  border-radius: 6px;
  letter-spacing: 0.06em;
  font-variant-numeric: tabular-nums;
  min-width: 58px;
  text-align: center;
}

.ub-cta {
  background: #fff;
  color: #a00016;
  font-weight: 800;
  padding: 5px 14px;
  border-radius: 100px;
  font-size: 0.78rem;
  white-space: nowrap;
  transition: var(--transition);
  flex-shrink: 0;
}

.ub-cta:hover {
  background: #f9dd8a;
}

@media (max-width: 600px) {
  .ub-text:last-of-type {
    display: none;
  }

  .ub-cta {
    display: none;
  }

  /* Ocultar ícone SVG de folha na urgency bar em mobile */
  .ub-icon {
    display: none;
  }

  /* Garantir que body comece abaixo da urgency bar fixa */
  body {
    padding-top: 0;
  }

  /* Hero com padding-top maior para não ficar atrás da urgency bar */
  .hero {
    padding-top: 130px;
  }
}

/* ---------- NAVBAR ---------- */
.navbar {
  position: fixed;
  top: 38px;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 14px 0;
  background: rgba(10, 46, 26, 0.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(10, 46, 26, 0.92);
  padding: 10px 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-tagline {
  font-family: var(--font-main);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--green-300);
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.nav-cta {
  display: none;
}

@media (min-width: 640px) {
  .nav-cta {
    display: inline-flex;
  }
}

/* ---------- HERO SECTION ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 100px 0 80px;
  background: linear-gradient(160deg, var(--green-900) 0%, var(--green-800) 50%, var(--green-700) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: center;
}

/* ---------- HERO MOBILE: copy → imagem → botão ---------- */
@media (max-width: 899px) {
  .hero-inner {
    display: flex;
    flex-direction: column;
    gap: 28px;
  }

  /* Copy primeiro */
  .hero-copy {
    order: 1;
  }

  /* Imagem no meio */
  .hero-image {
    order: 2;
  }

  /* Botão CTA abaixo da imagem */
  .hero-cta-wrap {
    order: 3;
    width: 100%;
    text-align: center;
  }

  /* Ocultar botão e micro duplicado dentro de hero-copy no mobile */
  .hero-cta-desktop {
    display: none !important;
  }

  .hero-micro-desktop {
    display: none !important;
  }

  /* Trust row */
  .trust-row {
    justify-content: flex-start;
  }

  /* Botão CTA mobile: largura total centralizado */
  .hero-cta-wrap .btn {
    display: flex;
    width: 100%;
    justify-content: center;
    text-align: center;
    padding: 18px 24px;
    font-size: 1rem;
  }

  /* Micro texto centralizado */
  .hero-cta-wrap .hero-micro {
    text-align: center;
  }

  /* Badge do produto: compacto, sem gap entre r$ e subtexto */
  .hero-img-badge {
    padding: 8px 14px;
    bottom: 12px;
    right: 12px;
    left: 12px;
    font-size: 0.8rem;
    display: flex;
    flex-direction: column;
    gap: 2px;
    align-items: center;
  }

  .hero-img-badge strong {
    font-size: 1.2rem;
    display: block;
    line-height: 1.2;
  }

  .hero-img-badge small {
    font-size: 0.62rem;
    line-height: 1.2;
  }
}

/* Desktop: hero-cta-wrap oculto (desktop usa os da hero-copy) */
@media (min-width: 900px) {
  .hero-cta-wrap {
    display: none;
  }

  .hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    align-items: start;
    gap: 60px;
  }

  .hero-copy {
    grid-column: 1;
    grid-row: 1;
  }

  .hero-image {
    grid-column: 2;
    grid-row: 1 / 3;
    align-self: center;
  }
}

.badge-tag {
  display: inline-block;
  position: relative;
  background: linear-gradient(135deg, rgba(96, 165, 250, 0.14) 0%, rgba(244, 114, 182, 0.14) 100%);
  border: 1px solid rgba(167, 139, 250, 0.5);
  color: #c4b5fd;
  padding: 6px 20px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  margin-bottom: 24px;
  box-shadow: 0 0 18px rgba(167, 139, 250, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.hero-title {
  font-family: var(--font-main);
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 24px;
}

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

.hero-sub {
  font-size: 1.12rem;
  line-height: 1.75;
  color: var(--text-light);
  margin-bottom: 32px;
  max-width: 520px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 7px 16px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-light);
}

.hero-micro {
  margin-top: 16px;
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ---------- HERO IMG BADGE (global) ---------- */
.hero-img-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--green-600), var(--green-800));
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding: 10px 16px;
  text-align: center;
  font-family: var(--font-main);
  font-size: 0.9rem;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 2px;
  align-items: center;
}

.hero-img-badge strong {
  font-size: 1.45rem;
  display: block;
  line-height: 1.2;
  font-weight: 900;
}

.hero-img-badge small {
  font-size: 0.72rem;
  opacity: 0.88;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.scroll-dot {
  width: 10px;
  height: 10px;
  background: var(--green-300);
  border-radius: 50%;
  animation: scrollBounce 1.8s ease-in-out infinite;
}

@keyframes scrollBounce {

  0%,
  100% {
    transform: translateY(0);
    opacity: 1;
  }

  50% {
    transform: translateY(12px);
    opacity: 0.4;
  }
}

/* Hero image area */
.hero-image {
  position: relative;
}

.hero-placeholder {
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

/* ---------- SECTIONS SHARED ---------- */
.section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

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

.section-title {
  font-family: var(--font-main);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(52, 201, 110, 0.15);
  border: 1px solid rgba(52, 201, 110, 0.35);
  color: var(--green-300);
  padding: 6px 18px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

/* Image placeholders */
.img-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(34, 160, 91, 0.15) 0%, rgba(15, 64, 38, 0.25) 100%);
  border: 2px dashed rgba(52, 201, 110, 0.4);
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
}

.placeholder-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 30px;
  text-align: center;
  z-index: 1;
}

.placeholder-icon {
  font-size: 2.5rem;
}

.placeholder-inner p {
  color: var(--green-200);
  font-weight: 600;
  font-size: 0.95rem;
}

.placeholder-inner span,
.placeholder-inner code {
  color: var(--text-muted);
  font-size: 0.78rem;
}

.placeholder-inner code {
  background: rgba(255, 255, 255, 0.08);
  padding: 2px 8px;
  border-radius: 4px;
  font-family: monospace;
}

/* ---------- DOR SECTION ---------- */
.dor-section {
  background: linear-gradient(180deg, var(--green-900) 0%, var(--green-800) 100%);
}

.dor-header {
  text-align: center;
  margin-bottom: 52px;
}

.dor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 80px;
}

.dor-card {
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
}

.dor-card:hover {
  transform: translateY(-6px);
}

.dor-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
}

.dor-card h3 {
  font-family: var(--font-main);
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.dor-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ---Solution block--- */
.solucao-block {
  text-align: center;
}

.solucao-label {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green-300);
  margin-bottom: 12px;
}

.solucao-title {
  font-family: var(--font-main);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 24px;
}

.brand-name {
  background: linear-gradient(90deg, var(--green-300) 0%, var(--accent-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.solucao-text {
  max-width: 680px;
  margin: 0 auto 48px;
  font-size: 1.08rem;
  color: var(--text-light);
  line-height: 1.8;
}

.solucao-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.stat-box {
  padding: 28px 20px;
  text-align: center;
  transition: var(--transition);
}

.stat-box:hover {
  transform: translateY(-4px);
}

.stat-box strong {
  display: block;
  font-family: var(--font-main);
  font-size: 2.5rem;
  font-weight: 900;
  background: linear-gradient(90deg, var(--green-300), var(--accent-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.stat-box span {
  color: var(--text-muted);
  font-size: 0.88rem;
}

/* ---------- BENEFÍCIOS SECTION ---------- */
.beneficios-section {
  background: linear-gradient(180deg, var(--green-800) 0%, var(--green-700) 100%);
}

.product-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 64px;
}

.product-img-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
}

.product-placeholder {
  aspect-ratio: 3/4;
  border-radius: var(--radius-md);
}

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

.benefit-card {
  padding: 32px 24px;
  transition: var(--transition);
}

.benefit-card:hover {
  transform: translateY(-6px);
}

.benefit-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 14px;
}

.benefit-card h3 {
  font-family: var(--font-main);
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.benefit-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

/* ---------- PROVA SOCIAL SECTION ---------- */
.prova-section {
  background: linear-gradient(180deg, var(--green-700) 0%, var(--green-800) 100%);
}

/* Carousel */
.carousel-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  margin-bottom: 48px;
}

.carousel-track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.carousel-slide {
  min-width: 100%;
  padding: 0 8px;
}

.proof-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  overflow: hidden;
}

@media (min-width: 700px) {
  .proof-card {
    grid-template-columns: 1fr 1fr;
  }
}

/* Text-only testimonial card */
.proof-card--text {
  grid-template-columns: 1fr !important;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 260px;
}

.proof-card--text .proof-info {
  padding: 52px 60px;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  align-items: center;
}

.proof-card--text .proof-quote {
  font-size: 1.18rem;
  line-height: 1.85;
  position: relative;
}

.proof-card--text .proof-quote::before {
  content: '\201C';
  font-size: 5rem;
  line-height: 0;
  vertical-align: -2rem;
  color: var(--green-400);
  opacity: 0.3;
  margin-right: 4px;
  font-family: Georgia, serif;
}

@media (max-width: 600px) {
  .proof-card--text .proof-info {
    padding: 36px 28px;
  }
  .proof-card--text .proof-quote {
    font-size: 1rem;
  }
}

.proof-placeholder {
  aspect-ratio: 1/1;
  border-radius: 0;
  border: none;
  min-height: 280px;
}

/* Live carousel images */
.proof-img-wrap {
  overflow: hidden;
  border-radius: 0;
  background: #071a0f;
  min-height: 280px;
}

.proof-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.5s ease;
}

.proof-card:hover .proof-img-wrap img {
  transform: scale(1.04);
}

/* WhatsApp screenshot slides portrait */
.depo-img {
  object-position: top;
}

/* SVG star rating */
.stars-svg {
  display: flex;
  align-items: center;
}

.stars {
  font-size: 1.2rem;
}

.proof-info {
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}

.stars {
  font-size: 1.2rem;
}

.proof-quote {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.75;
  font-style: italic;
}

.proof-name {
  font-size: 0.82rem;
  color: var(--green-300);
  font-weight: 600;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--transition);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev {
  left: 14px;
}

.carousel-btn.next {
  right: 14px;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 20px 0 4px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  background: var(--green-300);
  width: 24px;
  border-radius: 100px;
}

.mid-cta {
  text-align: center;
}

.cta-note {
  margin-top: 14px;
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ---------- OFERTA SECTION ---------- */
.oferta-section {
  background: linear-gradient(160deg, var(--green-800) 0%, var(--green-900) 100%);
}

.oferta-badge {
  background: rgba(240, 192, 96, 0.15);
  border-color: rgba(240, 192, 96, 0.4);
  color: var(--accent-gold);
}

.offer-box {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding: 48px;
  margin-bottom: 64px;
  border-color: rgba(52, 201, 110, 0.25);
}

@media (min-width: 800px) {
  .offer-box {
    grid-template-columns: 1fr 1fr;
  }
}

/* Offer-box mobile: left-aligned, CICATRIDIVA menor */
@media (max-width: 799px) {
  .offer-box {
    padding: 24px 20px;
    gap: 28px;
  }

  .offer-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .offer-tag {
    align-self: flex-start;
  }

  .offer-product {
    font-size: 2rem;
    text-align: left;
  }

  .offer-desc {
    text-align: left;
  }

  .offer-price-block {
    text-align: left;
  }

  .price-now {
    justify-content: flex-start;
  }
}

.offer-tag {
  display: inline-block;
  background: rgba(240, 192, 96, 0.15);
  border: 1px solid rgba(240, 192, 96, 0.4);
  color: var(--accent-gold);
  padding: 6px 18px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.offer-product {
  font-family: var(--font-main);
  font-size: 3rem;
  font-weight: 900;
  background: linear-gradient(90deg, var(--green-300), var(--accent-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.offer-desc {
  color: var(--text-muted);
  margin-bottom: 30px;
  font-size: 0.95rem;
}

.price-from {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-decoration: line-through;
  display: block;
  margin-bottom: 8px;
}

.price-now {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 8px;
}

.price-label {
  font-size: 1rem;
  color: var(--text-muted);
}

.price-value {
  font-family: var(--font-main);
  font-size: 3.5rem;
  font-weight: 900;
  background: linear-gradient(90deg, var(--green-300), var(--accent-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.price-sub {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.offer-placeholder {
  aspect-ratio: 1/1;
  border-radius: var(--radius-md);
  min-height: 280px;
}

.offer-img-live {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.offer-img-live img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-md);
  transition: transform 0.5s ease;
}

.offer-img-live:hover img {
  transform: scale(1.04);
}

/* -------- RESULTADOS SECTION -------- */
.resultados-section {
  background: linear-gradient(180deg, var(--green-700) 0%, var(--green-600) 100%);
}

.resultados-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.resultado-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.resultado-item:hover {
  transform: translateY(-6px);
}

.resultado-placeholder {
  aspect-ratio: 9/12;
  border-radius: var(--radius-md);
  min-height: 320px;
  border: 2px dashed rgba(52, 201, 110, 0.4);
}

/* Live resultado image - 16:9 landscape */
.resultado-img-wrap {
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  background: #0a2e1a;
}

.resultado-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}

.resultado-item:hover .resultado-img-wrap img {
  transform: scale(1.04);
}

.resultado-label {
  padding: 14px 20px;
  font-family: var(--font-main);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--green-300);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-align: center;
  background: rgba(255, 255, 255, 0.06);
}

/* Security section */
.security-section {
  text-align: center;
  margin-bottom: 64px;
}

.security-title {
  font-family: var(--font-main);
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 12px;
}

.security-sub {
  color: var(--text-muted);
  margin-bottom: 36px;
  font-size: 1rem;
}

.security-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 48px;
}

.security-item {
  padding: 28px 20px;
  text-align: center;
  transition: var(--transition);
}

.security-item:hover {
  transform: translateY(-4px);
}

.blocked-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 10px;
}

.allowed-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 10px;
}

.security-item strong {
  display: block;
  font-family: var(--font-main);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
  color: #fff;
}

.security-item p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.security-item.blocked {
  border-color: rgba(255, 100, 100, 0.25);
}

.security-item.blocked strong {
  color: #ff7d7d;
}

.security-item.allowed {
  border-color: rgba(52, 201, 110, 0.35);
}

.security-item.allowed strong {
  color: var(--green-300);
}

.security-flow {
  font-family: var(--font-main);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--text-light);
}

.flow-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.flow-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  max-width: 120px;
}

.step-num {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-500), var(--green-700));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-main);
  font-weight: 900;
  font-size: 1.1rem;
  box-shadow: 0 4px 16px rgba(34, 160, 91, 0.4);
}

.flow-step p {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
}

.flow-arrow {
  font-size: 1.4rem;
  color: var(--green-400);
}

@media (max-width: 600px) {
  .flow-arrow {
    display: none;
  }
}

.final-cta {
  text-align: center;
}

/* ---------- FAQ SECTION ---------- */
.faq-section {
  background: linear-gradient(180deg, var(--green-900) 0%, var(--green-800) 100%);
}

.faq-list {
  max-width: 760px;
  margin: 0 auto 72px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  overflow: hidden;
  transition: var(--transition);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  cursor: pointer;
  font-family: var(--font-main);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  gap: 16px;
  user-select: none;
  -webkit-user-select: none;
}

.faq-icon {
  flex-shrink: 0;
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--green-300);
  transition: transform 0.35s ease;
}

details[open] .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 28px 24px;
}

.faq-answer p {
  color: var(--text-muted);
  line-height: 1.75;
  font-size: 0.95rem;
}

/* Footer CTA */

.footer-cta-inner {
  max-width: 680px;
  margin: 0 auto;
  padding: 48px 40px;
  text-align: center;
  border-color: rgba(52, 201, 110, 0.25);
}

.footer-cta-inner h3 {
  font-family: var(--font-main);
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
}

.footer-cta-inner p {
  color: var(--text-muted);
  margin-bottom: 28px;
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--green-900);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 48px 0 32px;
  text-align: center;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.footer-logo {
  font-family: var(--font-main);
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
}

.footer-tagline {
  color: var(--green-300);
  font-size: 0.9rem;
  font-style: italic;
}

.footer-copy {
  color: var(--text-muted);
  font-size: 0.8rem;
}

.footer-disclaimer {
  color: rgba(255, 255, 255, 0.28);
  font-size: 0.72rem;
  max-width: 560px;
  line-height: 1.6;
  text-align: center;
}

/* ---------- FLOATING WHATSAPP BUTTON ---------- */
.float-wa {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--wa-green), var(--wa-green-dark));
  color: #fff;
  padding: 14px 20px;
  border-radius: 100px;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.55);
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 0.9rem;
  transition: var(--transition);
  animation: ctaPulse 2.5s ease-in-out infinite;
}

.float-wa svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.float-wa:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 16px 40px rgba(37, 211, 102, 0.7);
}

.float-wa-label {
  white-space: nowrap;
}

@media (max-width: 420px) {
  .float-wa-label {
    display: none;
  }
}

/* ---------- SCROLL ANIMATIONS ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

[data-delay="0"] {
  transition-delay: 0ms;
}

[data-delay="100"] {
  transition-delay: 100ms;
}

[data-delay="200"] {
  transition-delay: 200ms;
}

[data-delay="300"] {
  transition-delay: 300ms;
}

[data-delay="400"] {
  transition-delay: 400ms;
}

[data-delay="500"] {
  transition-delay: 500ms;
}

/* ---------- RESPONSIVE TWEAKS ---------- */
@media (max-width: 760px) {
  .section {
    padding: 72px 0;
  }

  .offer-box {
    padding: 32px 24px;
  }

  .footer-cta-inner {
    padding: 32px 24px;
  }

  .btn-xl {
    padding: 16px 28px;
    font-size: 1rem;
  }

  .flow-steps {
    flex-direction: column;
  }

  .flow-step {
    max-width: 100%;
    flex-direction: row;
  }

  .step-num {
    flex-shrink: 0;
  }
}