/**
 * ZAPIX CREDITOS - Design com Gradiente Laranja/Azul
 * Gradiente principal: linear-gradient(180deg, #FF8200 0%, #2F29F2 100%)
 */

/* ==========================================
   CSS RESET & VARIABLES
   ========================================== */

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

:root {
  /* Cores do Gradiente Principal */
  --color-orange: #FF8200;
  --color-blue: #2F29F2;
  --gradient-main: linear-gradient(180deg, #FF8200 0%, #2F29F2 100%);
  --gradient-main-hover: linear-gradient(180deg, #FF9500 0%, #4540FF 100%);
  --gradient-diagonal: linear-gradient(135deg, #FF8200 0%, #2F29F2 100%);
  --gradient-reverse: linear-gradient(180deg, #2F29F2 0%, #FF8200 100%);
  --gradient-horizontal: linear-gradient(90deg, #FF8200 0%, #2F29F2 100%);

  /* Backgrounds */
  --color-bg-primary: #0a0a1a;
  --color-bg-black: #050510;
  --color-bg-dark-blue: #0d0d2b;
  --color-bg-dark: #020033;
  --color-bg-card: rgba(255, 130, 0, 0.03);

  /* Cores de Destaque */
  --color-gold: #FFCB00;
  --color-yellow: #FFFF00;
  --color-green: #00FF00;
  --color-green-button: #066B00;
  --color-red: #FF0000;

  /* Texto */
  --color-text-white: #FFFFFF;
  --color-text-gray: #CFCFCF;
  --color-text-black: #000000;

  /* Tipografia */
  --font-primary: "Sora", sans-serif;

  /* Espacamento */
  --container-max: 1140px;
  --spacing-xs: 5px;
  --spacing-sm: 10px;
  --spacing-md: 20px;
  --spacing-lg: 40px;
  --spacing-xl: 60px;

  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 12px;
  --radius-full: 50%;

  /* Shadows com cores do gradiente */
  --shadow-gradient: 0 0 20px rgba(255, 130, 0, 0.3), 0 0 40px rgba(47, 41, 242, 0.2);
  --shadow-orange: 0 0 15px rgba(255, 130, 0, 0.4);
  --shadow-blue: 0 0 15px rgba(47, 41, 242, 0.4);
}

/* ==========================================
   BASE STYLES
   ========================================== */

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-text-white);
  background: rgba(5, 5, 16, 0.6);
  background-image:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(47, 41, 242, 0.25) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 100% 50%, rgba(255, 130, 0, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 0% 80%, rgba(47, 41, 242, 0.1) 0%, transparent 50%),
    linear-gradient(180deg, #050510 0%, #0a0a1a 30%, #0d0d2b 60%, #050510 100%);
  background-attachment: fixed;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  overflow-x: hidden;
}

/* Mobile-first touch improvements */
@media (max-width: 767px) {
  body {
    background-attachment: scroll;
  }
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

/* ==========================================
   UTILITY CLASSES - GRADIENT TEXT
   ========================================== */

.text-gradient {
  color: var(--color-orange);
  font-weight: 700;
}

.text-gold {
  color: var(--color-gold);
}

.text-green {
  color: var(--color-green);
}

.text-large {
  font-size: 28px;
  font-weight: 700;
}

.line-through {
  text-decoration: line-through;
  opacity: 0.6;
}

/* ==========================================
   TARJA DE ESCASSEZ - Promo Bar (Black Friday Style)
   ========================================== */

.promo-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: linear-gradient(90deg, #CC0000 0%, #FF0000 50%, #CC0000 100%);
  padding: 10px 20px;
  box-shadow: 0 2px 15px rgba(255, 0, 0, 0.4);
}

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

.promo-bar__icon {
  color: #FFFFFF;
  flex-shrink: 0;
}

@keyframes pulse-icon {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

.promo-bar__text {
  font-size: 13px;
  font-weight: 500;
  color: #FFFFFF;
  text-align: center;
}

.promo-bar__text strong {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #FFFF00;
}

.promo-bar__separator {
  color: #333;
  margin: 0 4px;
}

.promo-bar__timer {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #FF0000;
  background: #FFFFFF;
  padding: 6px 14px;
  border-radius: 4px;
}

.promo-bar__timer svg {
  flex-shrink: 0;
}

.promo-bar__timer #promoCountdown {
  font-family: "Sora", monospace;
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* ==========================================
   HERO SECTION - Gradiente de fundo
   ========================================== */

.hero {
  padding: 70px 0 var(--spacing-xl);
  background: transparent;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 50%, rgba(255, 130, 0, 0.08) 0%, transparent 50%),
              radial-gradient(circle at 70% 50%, rgba(47, 41, 242, 0.08) 0%, transparent 50%);
  animation: float 20s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(5deg); }
}

/* Badge com gradiente */
.badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-xs);
  padding: 10px 20px;
  background: rgba(255, 130, 0, 0.1);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text-white);
  margin-bottom: var(--spacing-md);
  z-index: 1;
}

.badge::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50px;
  padding: 2px;
  background: var(--gradient-horizontal);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.badge svg {
  color: var(--color-orange);
}

.badge--urgency {
  background: rgba(255, 0, 0, 0.15);
  border: 1px solid rgba(255, 0, 0, 0.4);
  animation: pulse-urgency 2s infinite;
}

@keyframes pulse-urgency {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.4); }
  50% { box-shadow: 0 0 20px 5px rgba(255, 0, 0, 0.2); }
}

/* Titulo com gradiente */
.hero__title {
  position: relative;
  font-size: clamp(24px, 5vw, 48px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: var(--spacing-md);
  color: var(--color-text-white);
  z-index: 1;
}

.hero__subtitle {
  position: relative;
  font-size: clamp(15px, 2.5vw, 18px);
  font-weight: 400;
  color: var(--color-text-gray);
  max-width: 600px;
  margin: 0 auto var(--spacing-lg);
  z-index: 1;
  padding: 0 10px;
}

/* Video com borda gradiente */
.hero__video {
  position: relative;
  max-width: 700px;
  margin: 0 auto var(--spacing-xl);
  border-radius: var(--radius-md);
  overflow: hidden;
  z-index: 1;
}

.hero__video::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: calc(var(--radius-md) + 3px);
  background: var(--gradient-diagonal);
  z-index: -1;
}

.hero__video > div {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--color-bg-dark);
}

.scroll-indicator {
  position: relative;
  animation: bounce 2s infinite;
  margin-top: var(--spacing-lg);
  z-index: 1;
}

.scroll-indicator svg {
  color: var(--color-orange);
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-10px); }
  60% { transform: translateY(-5px); }
}

/* Hero Urgency Icons & Text Colors */
.hero__urgency svg {
  color: var(--color-orange);
}

.hero__urgency strong {
  color: var(--color-orange);
}

/* ==========================================
   BUTTONS - Todos com gradiente
   ========================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-sm);
  padding: 14px 28px;
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 600;
  border-radius: var(--radius-lg);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.btn--primary {
  background: var(--gradient-main);
  color: var(--color-text-white);
}

.btn--primary:hover {
  transform: scale(1.05);
}

.btn--pulse {
  animation: pulse-animation 1.5s infinite;
}

@keyframes pulse-animation {
  0% { transform: scale(1); box-shadow: var(--shadow-gradient); }
  50% { transform: scale(1.08); box-shadow: 0 0 40px rgba(255, 130, 0, 0.6), 0 0 80px rgba(47, 41, 242, 0.4); }
  100% { transform: scale(1); box-shadow: var(--shadow-gradient); }
}

/* Botao secundario com borda gradiente */
.btn--secondary {
  background: transparent;
  color: var(--color-text-white);
  position: relative;
}

.btn--secondary::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  padding: 2px;
  background: var(--gradient-horizontal);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

.btn--secondary:hover::before {
  opacity: 1;
}

.btn--secondary:hover {
  background: rgba(255, 130, 0, 0.1);
}

.btn--consultor {
  margin-top: var(--spacing-md);
}

.btn--large {
  padding: 18px 40px;
  font-size: 18px;
}

/* Hero CTA Button */
.hero .btn--large {
  display: flex;
  width: fit-content;
  margin: 0 auto;
}

/* Hero Urgency - abaixo do botão */
.hero__urgency {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: var(--spacing-lg);
  font-size: 14px;
  color: var(--color-text-gray);
  width: 100%;
}

/* ==========================================
   STATS SECTION - Com gradiente
   ========================================== */

.stats {
  padding: var(--spacing-xl) 0;
  background: var(--color-bg-primary);
  position: relative;
}

.stats::before,
.stats::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gradient-horizontal);
}

.stats::before { top: 0; }
.stats::after { bottom: 0; }

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-lg);
}

.stat {
  text-align: center;
}

/* Icone com gradiente */
.stat__icon {
  position: relative;
  width: 50px;
  height: 50px;
  margin: 0 auto var(--spacing-sm);
  padding: 12px;
  background: rgba(255, 130, 0, 0.1);
  border-radius: var(--radius-md);
}

.stat__icon::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-md);
  padding: 1px;
  background: var(--gradient-diagonal);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.stat__icon svg {
  width: 100%;
  height: 100%;
  color: var(--color-orange);
}

.stat__number {
  display: block;
  font-size: 32px;
  font-weight: 700;
  color: var(--color-gold);
  margin-bottom: var(--spacing-xs);
}

.stat__label {
  font-size: 13px;
  font-weight: 400;
  color: var(--color-text-gray);
}

/* ==========================================
   BENEFITS SECTION
   ========================================== */

.benefits {
  padding: var(--spacing-xl) 0;
  background: rgba(0, 255, 0, 0.02);
}

.benefits__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-md);
  max-width: 800px;
  margin: 0 auto;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  padding: var(--spacing-md);
  background: rgba(255, 255, 255, 0.02);
  border-radius: var(--radius-md);
  border: 1px solid rgba(0, 255, 0, 0.1);
  transition: all 0.3s ease;
}

.benefit-item:hover {
  border-color: rgba(0, 255, 0, 0.3);
  background: rgba(0, 255, 0, 0.05);
}

.benefit-item__check {
  width: 24px;
  height: 24px;
  min-width: 24px;
  color: var(--color-green);
}

.benefit-item span {
  font-size: 15px;
  color: var(--color-text-gray);
}

.benefit-item strong {
  color: var(--color-text-white);
}

/* ==========================================
   BONUS SECTION
   ========================================== */

.bonus-section {
  padding: var(--spacing-xl) 0;
  background: linear-gradient(180deg, rgba(255, 130, 0, 0.05) 0%, transparent 100%);
}

.bonus__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-lg);
  margin-top: var(--spacing-lg);
}

.bonus-card {
  position: relative;
  background: rgba(255, 255, 255, 0.02);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  text-align: center;
  border: 1px solid rgba(255, 130, 0, 0.2);
  transition: all 0.3s ease;
}

.bonus-card:hover {
  border-color: var(--color-orange);
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(255, 130, 0, 0.15);
}

.bonus-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 16px;
  background: var(--gradient-main);
  color: var(--color-text-white);
  font-size: 12px;
  font-weight: 700;
  border-radius: 50px;
  white-space: nowrap;
}

.bonus-card__icon {
  width: 60px;
  height: 60px;
  margin: var(--spacing-md) auto;
  padding: 15px;
  background: rgba(255, 130, 0, 0.1);
  border-radius: var(--radius-full);
}

.bonus-card__icon svg {
  width: 100%;
  height: 100%;
  color: var(--color-orange);
}

.bonus-card__title {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-text-white);
  margin-bottom: var(--spacing-xs);
}

.bonus-card__desc {
  font-size: 14px;
  color: var(--color-text-gray);
  margin-bottom: var(--spacing-md);
  line-height: 1.5;
}

.bonus-card__price {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.bonus-card__price .price-old {
  font-size: 14px;
  color: var(--color-text-gray);
  text-decoration: line-through;
}

.bonus-card__price .price-new {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-green);
}

/* ==========================================
   SOCIAL PROOF / TESTIMONIALS SECTION
   ========================================== */

.social-proof {
  padding: var(--spacing-xl) 0;
  background: rgba(5, 5, 16, 0.6);
}

/* Carrossel de Depoimentos */
.depoimentos-carousel {
  max-width: 340px;
  margin: 0 auto;
  padding: 0 10px;
}

.carousel-container {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(255, 130, 0, 0.08) 0%, rgba(47, 41, 242, 0.08) 100%);
  padding: 3px;
}

.carousel-container::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 2px;
  background: var(--gradient-diagonal);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.carousel-inner {
  background: rgba(10, 10, 26, 0.95);
  border-radius: 14px;
  overflow: hidden;
  height: 420px;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
}

.carousel-slide {
  min-width: 100%;
  flex-shrink: 0;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
}

.carousel-img {
  max-width: calc(100% - 10px);
  max-height: calc(100% - 10px);
  width: auto;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: center;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.carousel-btn {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, rgba(255, 130, 0, 0.15) 0%, rgba(47, 41, 242, 0.15) 100%);
  border: 1px solid rgba(255, 130, 0, 0.3);
  color: var(--color-orange);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.carousel-btn:hover {
  background: var(--gradient-main);
  border-color: transparent;
  color: white;
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(255, 130, 0, 0.4);
}

.carousel-btn:active {
  transform: scale(0.95);
}

.carousel-dots {
  display: flex;
  gap: 10px;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dot.active {
  background: var(--gradient-main);
  border-color: transparent;
  transform: scale(1.3);
  box-shadow: 0 0 10px rgba(255, 130, 0, 0.5);
}

.carousel-dot:hover:not(.active) {
  background: rgba(255, 130, 0, 0.4);
  transform: scale(1.1);
}

/* ==========================================
   PRICE ANCHOR SECTION
   ========================================== */

.price-anchor {
  padding: var(--spacing-xl) 0;
  background: linear-gradient(180deg, transparent 0%, rgba(255, 130, 0, 0.05) 50%, transparent 100%);
}

.price-anchor__list {
  max-width: 500px;
  margin: var(--spacing-lg) auto;
  background: rgba(255, 255, 255, 0.02);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.price-anchor__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--spacing-sm) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.price-anchor__item:last-child {
  border-bottom: none;
}

.price-anchor__label {
  font-size: 15px;
  color: var(--color-text-gray);
}

.price-anchor__value {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text-gray);
}

.price-anchor__total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--spacing-md) 0 0;
  margin-top: var(--spacing-sm);
  border-top: 2px solid rgba(255, 130, 0, 0.3);
}

.price-anchor__total .price-anchor__label {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text-white);
}

.price-anchor__total .price-anchor__value {
  font-size: 24px;
  color: var(--color-red);
}

.price-anchor__cta {
  text-align: center;
  margin-top: var(--spacing-lg);
}

.price-anchor__cta p {
  font-size: 18px;
  color: var(--color-text-gray);
  margin-bottom: var(--spacing-sm);
}

.price-anchor__cta .text-green {
  font-size: 28px;
}

/* ==========================================
   GUARANTEE SECTION
   ========================================== */

.guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-xl);
  max-width: 700px;
  margin: var(--spacing-xl) auto 0;
  padding: var(--spacing-xl);
  background: linear-gradient(135deg, rgba(0, 255, 0, 0.08) 0%, rgba(0, 200, 0, 0.03) 100%);
  border-radius: var(--radius-lg);
  border: 2px solid rgba(0, 255, 0, 0.3);
  position: relative;
}

.guarantee::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(0, 255, 0, 0.4) 0%, rgba(0, 200, 0, 0.1) 100%);
  z-index: -1;
  filter: blur(10px);
  opacity: 0.5;
}

/* Selo de Garantia */
.guarantee__seal {
  position: relative;
  flex-shrink: 0;
}

.guarantee__seal-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  background: linear-gradient(180deg, #00c853 0%, #00a844 100%);
  border-radius: var(--radius-full);
  color: #fff;
  position: relative;
  box-shadow: 0 10px 40px rgba(0, 200, 83, 0.4), inset 0 2px 0 rgba(255,255,255,0.2);
  border: 4px solid rgba(255,255,255,0.2);
}

.guarantee__seal-inner::before {
  content: '';
  position: absolute;
  inset: 8px;
  border: 2px dashed rgba(255,255,255,0.3);
  border-radius: var(--radius-full);
}

.guarantee__shield {
  width: 28px;
  height: 28px;
  margin-bottom: 2px;
  opacity: 0.9;
}

.guarantee__days {
  font-size: 36px;
  font-weight: 900;
  line-height: 1;
  text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.guarantee__text {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.guarantee__subtext {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 3px;
  opacity: 0.8;
  margin-top: 2px;
}

/* Conteudo da Garantia */
.guarantee__content h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-green);
  margin-bottom: var(--spacing-sm);
}

.guarantee__content p {
  font-size: 15px;
  color: var(--color-text-gray);
  line-height: 1.6;
  margin-bottom: var(--spacing-md);
}

.guarantee__content p strong {
  color: var(--color-text-white);
}

.guarantee__features {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-sm);
}

.guarantee__features span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--color-green);
  font-weight: 500;
}

.guarantee__features span svg {
  color: var(--color-green);
}

/* ==========================================
   SECTION TITLES - Com gradiente
   ========================================== */

.section__title {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: var(--spacing-sm);
  color: var(--color-text-white);
}

.section__title .text-gold {
  color: var(--color-gold);
}

.section__subtitle {
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  color: var(--color-text-gray);
  max-width: 500px;
  margin: 0 auto var(--spacing-lg);
}

/* ==========================================
   PACOTES SECTION
   ========================================== */

.pacotes {
  padding: var(--spacing-xl) 0;
  background: rgba(5, 5, 16, 0.6);
}

.pacotes__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-md);
}

/* Card com hover gradiente */
.pacote-card {
  position: relative;
  background: rgba(255, 255, 255, 0.02);
  border-radius: var(--radius-md);
  padding: var(--spacing-lg) var(--spacing-md);
  text-align: center;
  transition: all 0.3s ease;
}

.pacote-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-md);
  padding: 1px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  transition: all 0.3s ease;
}

.pacote-card:hover::before {
  background: var(--gradient-main);
}

.pacote-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-gradient);
}

/* Card featured com gradiente */
.pacote-card--featured {
  background: rgba(255, 130, 0, 0.05);
}

.pacote-card--featured::before {
  background: var(--gradient-main);
}

.pacote-card--featured {
  box-shadow: var(--shadow-gradient);
}

/* Badge com gradiente */
.pacote-card__badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 12px;
  background: var(--gradient-main);
  color: var(--color-text-white);
  font-size: 11px;
  font-weight: 600;
  border-radius: 50px;
  white-space: nowrap;
}

.pacote-card__badge--popular {
  background: var(--gradient-reverse);
}

/* Icone com gradiente */
.pacote-card__icon {
  position: relative;
  width: 50px;
  height: 50px;
  margin: 0 auto var(--spacing-md);
  padding: 12px;
  background: rgba(255, 130, 0, 0.05);
  border-radius: var(--radius-md);
}

.pacote-card__icon::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-md);
  padding: 1px;
  background: var(--gradient-diagonal);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.3;
  transition: opacity 0.3s ease;
}

.pacote-card:hover .pacote-card__icon::before,
.pacote-card--featured .pacote-card__icon::before {
  opacity: 1;
}

.pacote-card__icon svg {
  width: 100%;
  height: 100%;
  color: var(--color-text-gray);
  transition: color 0.3s ease;
}

.pacote-card:hover .pacote-card__icon svg,
.pacote-card--featured .pacote-card__icon svg {
  color: var(--color-orange);
}

/* Logo Lovable nos pacotes */
.pacote-card__logo {
  display: flex;
  justify-content: center;
  margin-bottom: 12px;
}

.pacote-card__logo-img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  border-radius: 12px;
}

.pacote-card--featured .pacote-card__logo-img {
  width: 70px;
  height: 70px;
}

.pacote-card__title {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text-white);
  margin-bottom: var(--spacing-sm);
}

.pacote-card__credits {
  margin-bottom: var(--spacing-sm);
}

.pacote-card__number {
  font-size: 36px;
  font-weight: 700;
  color: var(--color-text-white);
}

.pacote-card__unit {
  font-size: 14px;
  font-weight: 400;
  color: var(--color-text-gray);
  margin-left: 5px;
}

/* Preco */
.pacote-card__price {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-green);
  margin-bottom: var(--spacing-xs);
}

.pacote-card__per {
  font-size: 12px;
  font-weight: 400;
  color: var(--color-text-gray);
  margin-bottom: var(--spacing-md);
}

.pacote-card__price-old {
  font-size: 14px;
  color: var(--color-text-gray);
  text-decoration: line-through;
  margin-bottom: var(--spacing-xs);
}

.pacote-card__economy {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-green);
  margin-bottom: var(--spacing-md);
}

.pacote-card__btn {
  width: 100%;
}

/* ==========================================
   PERSONALIZADO SECTION
   ========================================== */

.personalizado {
  padding: var(--spacing-lg) 0;
  background: rgba(5, 5, 16, 0.6);
}

/* Box com borda gradiente */
.personalizado__box {
  position: relative;
  background: radial-gradient(circle at center, rgba(255, 130, 0, 0.05) 0%, var(--color-bg-dark) 100%);
  border-radius: var(--radius-md);
  padding: var(--spacing-lg);
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.personalizado__box::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-md);
  padding: 2px;
  background: var(--gradient-diagonal);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.personalizado__icon {
  position: relative;
  width: 60px;
  height: 60px;
  margin: 0 auto var(--spacing-md);
  padding: 15px;
  background: var(--gradient-main);
  border-radius: var(--radius-full);
}

.personalizado__icon svg {
  width: 100%;
  height: 100%;
  color: var(--color-text-white);
}

.personalizado__title {
  font-size: 24px;
  font-weight: 600;
  color: var(--color-text-white);
  margin-bottom: var(--spacing-sm);
}

.personalizado__text {
  font-size: 14px;
  color: var(--color-text-gray);
  margin-bottom: var(--spacing-md);
}

.personalizado__tags {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-md);
}

/* Tags com borda gradiente */
.tag {
  position: relative;
  padding: 6px 14px;
  background: transparent;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 500;
  color: var(--color-text-white);
}

.tag::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50px;
  padding: 1px;
  background: var(--gradient-horizontal);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

/* ==========================================
   COMO FUNCIONA SECTION
   ========================================== */

.como-funciona {
  padding: var(--spacing-xl) 0;
  background: var(--color-bg-primary);
  position: relative;
}

.como-funciona::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gradient-horizontal);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-lg);
}

.step {
  text-align: center;
}

/* Icone com borda gradiente */
.step__icon {
  position: relative;
  width: 60px;
  height: 60px;
  margin: 0 auto var(--spacing-md);
  padding: 15px;
  background: rgba(255, 130, 0, 0.05);
  border-radius: var(--radius-md);
}

.step__icon::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-md);
  padding: 1px;
  background: var(--gradient-diagonal);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.5;
}

.step__icon svg {
  width: 100%;
  height: 100%;
  color: var(--color-text-white);
}

/* Numero com gradiente */
.step__number {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 24px;
  height: 24px;
  background: var(--gradient-main);
  color: var(--color-text-white);
  font-size: 12px;
  font-weight: 700;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-orange);
}

.step__title {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text-white);
  margin-bottom: var(--spacing-xs);
}

.step__text {
  font-size: 13px;
  font-weight: 400;
  color: var(--color-text-gray);
  line-height: 1.5;
}

/* ==========================================
   FAQ SECTION
   ========================================== */

.faq {
  padding: var(--spacing-xl) 0;
  background: rgba(5, 5, 16, 0.6);
}

.faq__list {
  max-width: 700px;
  margin: 0 auto;
}

.faq__item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  margin-bottom: 10px;
  overflow: hidden;
}

.faq__item:hover {
  border-color: rgba(255, 130, 0, 0.3);
}

.faq__question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: 500;
  color: var(--color-text-white);
  text-align: left;
}

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

.faq__question.active {
  color: var(--color-orange);
}

.faq__icon {
  width: 24px;
  height: 24px;
  min-width: 24px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq__question.active .faq__icon {
  transform: rotate(180deg);
}

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

.faq__answer.active {
  max-height: 500px;
  transition: max-height 0.4s ease-in;
}

.faq__answer-inner {
  padding: 0 20px 20px;
}

.faq__answer p {
  font-size: 14px;
  font-weight: 400;
  color: var(--color-text-gray);
  line-height: 1.7;
  margin: 0;
}

/* ==========================================
   FOOTER
   ========================================== */

.footer {
  background: var(--color-bg-primary);
  position: relative;
  padding: var(--spacing-xl) 0;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-horizontal);
}

.footer__inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: var(--spacing-md);
  padding: var(--spacing-lg) 0;
  text-align: center;
}

/* Logo Styles */
.logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo__img {
  height: 60px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
}

.footer__links {
  display: flex;
  gap: var(--spacing-lg);
}

.footer__link {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-gray);
  transition: all 0.3s ease;
}

.footer__link:hover {
  color: var(--color-orange);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: var(--spacing-md) 0;
  text-align: center;
}

.footer__bottom p {
  font-size: 13px;
  color: var(--color-text-gray);
  margin-bottom: var(--spacing-xs);
}

.footer__disclaimer {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: var(--spacing-sm);
}

/* ==========================================
   NOTIFICATION POPUP
   ========================================== */

.notification {
  position: fixed;
  bottom: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  padding: var(--spacing-sm) var(--spacing-md);
  background: rgba(0, 8, 49, 0.95);
  border-radius: var(--radius-md);
  z-index: 99;
  animation: slideIn 0.5s ease;
}

.notification::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-md);
  padding: 1px;
  background: var(--gradient-diagonal);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

@keyframes slideIn {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.notification__avatar {
  width: 40px;
  height: 40px;
  background: var(--gradient-main);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
}

.notification__avatar svg {
  width: 24px;
  height: 24px;
  color: var(--color-text-white);
}

.notification__content {
  line-height: 1.3;
}

.notification__name {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text-white);
}

.notification__credits {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 700;
  color: var(--color-gold);
}

.notification__credits svg {
  color: var(--color-orange);
}

.notification__time {
  font-size: 12px;
  color: var(--color-text-gray);
}

/* ==========================================
   RESPONSIVE - DESKTOP LARGE (> 1440px)
   ========================================== */

@media (min-width: 1440px) {
  .container {
    max-width: 1280px;
  }

  .hero__title {
    font-size: 52px;
  }

  .hero__subtitle {
    font-size: 20px;
    max-width: 700px;
  }

  .section__title {
    font-size: 38px;
  }

  .section__subtitle {
    font-size: 18px;
  }

  .pacotes__grid {
    gap: 30px;
  }

  .pacote-card {
    padding: 32px 28px;
  }

  .pacote-card__number {
    font-size: 48px;
  }

  .pacote-card__price {
    font-size: 32px;
  }

  .bonus__grid {
    gap: 30px;
  }

  .bonus-card {
    padding: 32px;
  }

  .steps {
    gap: 30px;
  }

  .step {
    padding: 28px 24px;
  }

  .guarantee {
    padding: 40px;
    gap: 40px;
  }
}

/* ==========================================
   RESPONSIVE - TABLET
   ========================================== */

@media (max-width: 1024px) {
  .stats__grid,
  .pacotes__grid,
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero__title {
    font-size: 36px;
  }

  .hero__subtitle {
    font-size: 17px;
  }

  .section__title {
    font-size: 28px;
  }

  .bonus__grid {
    grid-template-columns: 1fr 1fr;
    max-width: 700px;
    margin: 0 auto;
    gap: 20px;
  }

  .bonus-card {
    padding: 24px 20px;
  }

  .pacotes__grid {
    max-width: 800px;
    margin: 0 auto;
  }

  .pacote-card {
    padding: 20px;
  }

  .guarantee {
    max-width: 700px;
    margin: 30px auto;
  }

  .benefits__list {
    max-width: 700px;
  }
}

/* ==========================================
   RESPONSIVE - MOBILE
   ========================================== */

@media (max-width: 767px) {
  /* Container padding */
  .container {
    padding: 0 16px;
  }

  /* Header Mobile */
  .header__inner {
    height: 56px;
  }

  .logo__img {
    height: 32px;
  }

  .logo__text {
    font-size: 14px;
  }

  .nav {
    gap: 10px;
  }

  .nav__link {
    font-size: 14px;
    padding: 8px 12px;
  }

  /* Tarja Escassez Mobile */
  .promo-bar {
    padding: 10px 12px;
  }

  .promo-bar__content {
    gap: 8px;
  }

  .promo-bar__icon {
    width: 16px;
    height: 16px;
  }

  .promo-bar__text {
    font-size: 12px;
  }

  .promo-bar__separator {
    display: none;
  }

  .promo-bar__timer {
    font-size: 12px;
    padding: 6px 12px;
    gap: 6px;
  }

  .promo-bar__timer svg {
    width: 12px;
    height: 12px;
  }

  /* Hero Mobile */
  .hero {
    padding: 55px 0 var(--spacing-lg);
  }

  .badge {
    font-size: 12px;
    padding: 8px 14px;
  }

  .hero__title {
    font-size: 22px;
    line-height: 1.25;
    margin-bottom: 14px;
    padding: 0 5px;
  }

  .hero__subtitle {
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 20px;
  }

  .hero__video {
    margin: 20px auto;
  }

  .hero__urgency {
    font-size: 13px;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
    margin-top: var(--spacing-md);
  }

  /* Sections Mobile */
  section {
    padding: var(--spacing-lg) 0;
  }

  .section__title {
    font-size: 20px;
    line-height: 1.3;
    margin-bottom: 10px;
    padding: 0 5px;
  }

  .section__subtitle {
    font-size: 15px;
    margin-bottom: 24px;
  }

  /* Steps/Como Funciona Mobile */
  .steps {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .step {
    padding: 14px 10px;
  }

  .step__icon {
    width: 48px;
    height: 48px;
    margin-bottom: 10px;
    padding: 10px;
  }

  .step__icon svg {
    width: 100%;
    height: 100%;
  }

  .step__number {
    font-size: 11px;
    padding: 3px 8px;
  }

  .step__title {
    font-size: 14px;
    margin-bottom: 6px;
  }

  .step__text {
    font-size: 13px;
    line-height: 1.4;
  }

  /* Pacotes Mobile */
  .pacotes__grid {
    grid-template-columns: 1fr;
    max-width: 100%;
    gap: 14px;
  }

  .pacote-card {
    padding: 18px;
  }

  .pacote-card__badge {
    font-size: 11px;
    padding: 5px 12px;
  }

  .pacote-card__title {
    font-size: 17px;
  }

  .pacote-card__icon {
    width: 48px;
    height: 48px;
    padding: 10px;
  }

  .pacote-card__number {
    font-size: 30px;
  }

  .pacote-card__label {
    font-size: 13px;
  }

  .pacote-card__price {
    font-size: 24px;
  }

  .pacote-card__btn {
    padding: 14px 24px;
    font-size: 15px;
    min-height: 48px;
  }

  /* Personalizado Mobile */
  .personalizado__box {
    padding: 18px;
  }

  .personalizado__title {
    font-size: 18px;
  }

  .personalizado__text {
    font-size: 14px;
  }

  /* Benefits Mobile */
  .benefits__list {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .benefit-item {
    padding: 12px 14px;
  }

  .benefit-item svg {
    width: 22px;
    height: 22px;
    min-width: 22px;
  }

  .benefit-item span {
    font-size: 14px;
  }

  /* Bonus Mobile */
  .bonus__grid {
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 100%;
  }

  .bonus-card {
    padding: 20px 16px;
    flex-direction: column;
    text-align: center;
    gap: 12px;
    align-items: center;
  }

  .bonus-card__icon {
    width: 54px;
    height: 54px;
    min-width: 54px;
    padding: 12px;
    margin: 0 auto;
  }

  .bonus-card__title {
    font-size: 16px;
    margin-bottom: 6px;
  }

  .bonus-card__desc {
    font-size: 14px;
    line-height: 1.5;
  }

  .bonus-card__price {
    text-align: center;
  }

  /* Carrossel Mobile */
  .depoimentos-carousel {
    max-width: 320px;
    margin: 0 auto;
    padding: 0 10px;
  }

  .carousel-container {
    border-radius: 14px;
  }

  .carousel-inner {
    height: auto;
    min-height: 320px;
    max-height: 400px;
    border-radius: 12px;
  }

  .carousel-slide {
    padding: 12px;
  }

  .carousel-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px;
  }

  .carousel-controls {
    margin-top: 18px;
    gap: 18px;
  }

  .carousel-btn {
    width: 44px;
    height: 44px;
  }

  .carousel-btn svg {
    width: 20px;
    height: 20px;
  }

  .carousel-dot {
    width: 10px;
    height: 10px;
  }

  /* Price Anchor Mobile */
  .price-anchor__list {
    padding: 18px;
    margin: 18px auto;
  }

  .price-anchor__item {
    padding: 12px 0;
  }

  .price-anchor__label {
    font-size: 14px;
  }

  .price-anchor__value {
    font-size: 14px;
  }

  .price-anchor__total .price-anchor__value {
    font-size: 20px;
  }

  .price-anchor__cta {
    padding: 18px;
  }

  .price-anchor__cta .text-green {
    font-size: 22px;
  }

  .text-large {
    font-size: 22px;
  }

  /* Guarantee Mobile */
  .guarantee {
    flex-direction: column;
    text-align: center;
    gap: 20px;
    padding: 24px 18px;
    margin: 24px auto;
  }

  .guarantee__seal-inner {
    width: 100px;
    height: 100px;
  }

  .guarantee__shield {
    width: 22px;
    height: 22px;
  }

  .guarantee__days {
    font-size: 30px;
  }

  .guarantee__text {
    font-size: 10px;
  }

  .guarantee__subtext {
    font-size: 8px;
  }

  .guarantee__content h3 {
    font-size: 17px;
    margin-bottom: 10px;
  }

  .guarantee__content p {
    font-size: 14px;
    margin-bottom: 14px;
  }

  .guarantee__features {
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
  }

  .guarantee__features span {
    font-size: 13px;
    padding: 6px 10px;
  }

  /* FAQ Mobile */
  .faq__item {
    margin-bottom: 10px;
  }

  .faq__question {
    font-size: 15px;
    padding: 16px;
    gap: 12px;
    min-height: 48px;
  }

  .faq__icon {
    width: 20px;
    height: 20px;
    min-width: 20px;
  }

  .faq__answer-inner {
    padding: 0 16px 16px;
  }

  .faq__answer p {
    font-size: 14px;
    line-height: 1.5;
  }

  /* Footer Mobile */
  .footer {
    padding: 32px 0;
  }

  .footer__inner {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .logo__img {
    height: 50px;
    max-width: 180px;
  }

  .footer__text {
    font-size: 13px;
  }

  .footer__disclaimer {
    font-size: 12px;
  }

  .footer__links {
    gap: 18px;
  }

  .footer__links a {
    font-size: 13px;
  }

  /* Notification Mobile */
  .notification {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 14px;
  }

  .notification__avatar {
    width: 40px;
    height: 40px;
  }

  .notification__name {
    font-size: 13px;
  }

  .notification__credits {
    font-size: 14px;
  }

  .notification__time {
    font-size: 12px;
  }

  /* Buttons Mobile */
  .btn {
    padding: 14px 22px;
    font-size: 15px;
    min-height: 48px;
  }

  .btn--large {
    padding: 16px 26px;
    font-size: 16px;
    width: 100%;
    min-height: 52px;
  }

  .btn--pulse {
    animation: pulse-animation 2s infinite;
  }

  /* Checkout Modal Mobile */
  .checkout-modal {
    width: 100%;
    max-width: 100%;
    height: 100%;
    max-height: 100%;
    border-radius: 0;
    margin: 0;
  }

  .checkout-header {
    padding: 16px;
  }

  .checkout-header h2 {
    font-size: 18px;
  }

  .checkout-close {
    width: 44px;
    height: 44px;
  }

  .checkout-body {
    padding: 18px;
  }

  .checkout-banner {
    margin: 0;
    padding: 0;
  }

  .checkout-banner__img {
    border-radius: 0;
  }

  .checkout-progress {
    margin-bottom: 24px;
  }

  .checkout-progress__step {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }

  .checkout-pacote {
    padding: 18px;
    margin-bottom: 18px;
  }

  .checkout-pacote__name {
    font-size: 17px;
  }

  .checkout-pacote__credits {
    font-size: 14px;
  }

  .checkout-pacote__price {
    font-size: 24px;
  }

  .checkout-form .form-group {
    margin-bottom: 16px;
  }

  .checkout-form label {
    font-size: 14px;
    margin-bottom: 8px;
  }

  .checkout-form input {
    padding: 14px 16px;
    font-size: 16px;
    min-height: 48px;
  }

  .checkout-form .btn {
    padding: 16px;
    font-size: 16px;
    min-height: 52px;
  }

  /* PIX Step Mobile */
  .pix-container {
    padding: 18px;
  }

  .pix-qrcode {
    width: 200px;
    height: 200px;
  }

  .pix-timer {
    font-size: 28px;
  }

  .pix-value {
    font-size: 26px;
  }

  .pix-code-container input {
    font-size: 13px;
    padding: 12px;
    min-height: 48px;
  }

  .pix-code-container .btn {
    padding: 12px 18px;
    font-size: 14px;
    min-height: 48px;
  }

  /* Success Step Mobile */
  .success-container {
    padding: 24px 18px;
  }

  .success-icon {
    width: 64px;
    height: 64px;
  }

  .success-title {
    font-size: 22px;
  }

  .success-message {
    font-size: 15px;
  }

  .success-details {
    padding: 16px;
    font-size: 14px;
  }
}

/* ==========================================
   RESPONSIVE - EXTRA SMALL (< 375px)
   ========================================== */

@media (max-width: 374px) {
  .container {
    padding: 0 12px;
  }

  .hero__title {
    font-size: 19px;
  }

  .section__title {
    font-size: 18px;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .step__title {
    font-size: 13px;
  }

  .step__text {
    font-size: 12px;
  }

  .pacote-card__number {
    font-size: 26px;
  }

  .pacote-card__price {
    font-size: 22px;
  }

  .guarantee__seal-inner {
    width: 85px;
    height: 85px;
  }

  .guarantee__days {
    font-size: 26px;
  }

  .pix-qrcode {
    width: 170px;
    height: 170px;
  }

  .bonus-card__title {
    font-size: 15px;
  }

  .bonus-card__desc {
    font-size: 13px;
  }

  .btn {
    padding: 12px 18px;
    font-size: 14px;
  }

  .btn--large {
    padding: 14px 20px;
    font-size: 15px;
  }
}

/* ==========================================
   CHECKOUT MODAL - Design System Lovable Infinito
   ========================================== */

.checkout-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 8, 49, 0.95);
  backdrop-filter: blur(12px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-md);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.checkout-overlay.active {
  opacity: 1;
  visibility: visible;
}

.checkout-modal {
  background: linear-gradient(180deg, #000831 0%, #020033 100%);
  border-radius: 20px;
  width: 100%;
  max-width: 520px;
  max-height: 92vh;
  overflow-y: auto;
  overflow-x: hidden;
  position: relative;
  transform: translateY(30px) scale(0.92);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid rgba(255, 203, 0, 0.3);
  box-shadow:
    0 25px 80px rgba(0, 0, 0, 0.6),
    0 0 60px rgba(255, 130, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.checkout-overlay.active .checkout-modal {
  transform: translateY(0) scale(1);
}

/* Scrollbar personalizada */
.checkout-modal::-webkit-scrollbar {
  width: 6px;
}

.checkout-modal::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
}

.checkout-modal::-webkit-scrollbar-thumb {
  background: var(--gradient-main);
  border-radius: 3px;
}

/* Botao Fechar */
.checkout-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 10;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--color-text-gray);
  transition: all 0.3s ease;
}

.checkout-close:hover {
  background: rgba(255, 0, 0, 0.2);
  border-color: rgba(255, 0, 0, 0.4);
  color: #FF0000;
  transform: rotate(90deg);
}

/* Banner do Checkout */
.checkout-banner {
  width: 100%;
  margin: 0;
  padding: 0;
  line-height: 0;
  position: relative;
}

.checkout-banner__img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  border-radius: 18px 18px 0 0;
}

/* Progress Steps - Redesenhado */
.checkout-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 24px;
  gap: 0;
  background: linear-gradient(180deg, rgba(255, 203, 0, 0.08) 0%, transparent 100%);
  border-bottom: 1px solid rgba(255, 203, 0, 0.15);
}

.checkout-progress__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-width: 80px;
}

.checkout-progress__circle {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.checkout-progress__number {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-text-gray);
  transition: all 0.3s ease;
}

.checkout-progress__check {
  display: none;
  color: #FFFFFF;
}

.checkout-progress__label {
  font-size: 12px;
  font-weight: 600;
  color: var(--color-text-gray);
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Step Ativo */
.checkout-progress__step.active .checkout-progress__circle {
  background: #FFCB00;
  border-color: transparent;
  box-shadow: 0 0 20px rgba(255, 203, 0, 0.5);
  transform: scale(1.1);
}

.checkout-progress__step.active .checkout-progress__number {
  color: #000000;
}

.checkout-progress__step.active .checkout-progress__label {
  color: var(--color-gold);
}

/* Step Completado */
.checkout-progress__step.completed .checkout-progress__circle {
  background: linear-gradient(180deg, #00C853 0%, #00A844 100%);
  border-color: transparent;
  box-shadow: 0 0 15px rgba(0, 200, 83, 0.4);
}

.checkout-progress__step.completed .checkout-progress__number {
  display: none;
}

.checkout-progress__step.completed .checkout-progress__check {
  display: block;
}

.checkout-progress__step.completed .checkout-progress__label {
  color: #00FF00;
}

/* Connector Line */
.checkout-progress__connector {
  width: 60px;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  margin: 0 8px;
  margin-bottom: 22px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.checkout-progress__step.completed + .checkout-progress__connector {
  background: linear-gradient(90deg, #00C853 0%, #00A844 100%);
  box-shadow: 0 0 10px rgba(0, 200, 83, 0.3);
}

.checkout-progress__step.active + .checkout-progress__connector::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 50%;
  background: var(--gradient-horizontal);
  animation: progressPulse 1.5s ease-in-out infinite;
}

@keyframes progressPulse {
  0%, 100% { width: 30%; opacity: 0.5; }
  50% { width: 70%; opacity: 1; }
}

/* Content */
.checkout-content {
  padding: 24px;
}

.checkout-step {
  display: none;
}

.checkout-step.active {
  display: block;
  animation: fadeInUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ==========================================
   CHECKOUT SUMMARY - Pacote Selecionado
   ========================================== */

.checkout-summary {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: radial-gradient(ellipse at top left, rgba(255, 203, 0, 0.12) 0%, transparent 60%),
              rgba(255, 255, 255, 0.03);
  border-radius: 14px;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 203, 0, 0.25);
  position: relative;
}

.checkout-summary__icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

.checkout-summary__logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 12px;
}

.checkout-summary__icon svg {
  width: 26px;
  height: 26px;
  color: #FFFFFF;
}

.checkout-summary__details {
  flex: 1;
  min-width: 0;
}

.checkout-summary__badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-gold);
  background: rgba(255, 203, 0, 0.15);
  padding: 3px 8px;
  border-radius: 4px;
  margin-bottom: 6px;
}

.checkout-summary__name {
  font-size: 18px;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0 0 4px;
}

.checkout-summary__credits {
  font-size: 14px;
  color: var(--color-text-gray);
  margin: 0;
}

.checkout-summary__pricing {
  text-align: right;
}

.checkout-summary__price {
  font-size: 22px;
  font-weight: 800;
  color: #FFFFFF;
}

/* ==========================================
   CHECKOUT EXTRAS - STEP 2 (Design Autentico)
   Baseado no Design System Lovable Infinito
   ========================================== */

.checkout-extras {
  padding: 5px 0;
}

.checkout-extras__title {
  font-family: "Sora", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #FFFFFF;
  margin: 0 0 6px;
  text-align: left;
}

.checkout-extras__desc {
  font-family: "Sora", sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: #CFCFCF;
  margin: 0 0 20px;
}

/* ==========================================
   OFERTA CARD - Estilo Bonus Card Original
   ========================================== */

.oferta-card {
  position: relative;
  border: 1px solid rgba(255, 229, 0, 0.3);
  border-radius: 10px;
  background: radial-gradient(ellipse at top, rgba(242, 190, 41, 0.08) 0%, rgba(2, 0, 51, 0.4) 100%);
  margin-bottom: 14px;
  overflow: hidden;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.oferta-card:hover {
  border-color: rgba(255, 229, 0, 0.5);
}

.oferta-card.selected {
  border-color: #FFCB00;
  background: radial-gradient(ellipse at top, rgba(242, 190, 41, 0.15) 0%, rgba(2, 0, 51, 0.5) 100%);
}

/* Ribbon/Tag de desconto */
.oferta-card__ribbon {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #FF0000;
  color: #FFFFFF;
  font-family: "Sora", sans-serif;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 4px;
  letter-spacing: 0.5px;
}

.oferta-card__ribbon--gold {
  background: #FFCB00;
  color: #000000;
}

/* Corpo do Card */
.oferta-card__body {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 16px;
  gap: 12px;
}

.oferta-card__info {
  flex: 1;
}

.oferta-card__titulo {
  font-family: "Sora", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #FFFFFF;
  margin: 0 0 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.oferta-card__titulo svg {
  color: #FFCB00;
  flex-shrink: 0;
}

.oferta-card__texto {
  font-family: "Sora", sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: #CFCFCF;
  line-height: 1.4;
  margin: 0;
  max-width: 200px;
}

/* Precos */
.oferta-card__preco {
  text-align: right;
  flex-shrink: 0;
}

.oferta-card__de {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: 13px;
  color: #FF4444;
  text-decoration: line-through;
  margin-bottom: 2px;
}

.oferta-card__por {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #FFFFFF;
}

/* Checkbox Area */
.oferta-card__check {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: rgba(255, 203, 0, 0.05);
  border-top: 1px solid rgba(255, 229, 0, 0.15);
  cursor: pointer;
  transition: background 0.2s ease;
}

.oferta-card__check:hover {
  background: rgba(255, 203, 0, 0.1);
}

.oferta-card__check input {
  display: none;
}

.oferta-card__checkbox {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 203, 0, 0.5);
  border-radius: 4px;
  background: transparent;
  position: relative;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.oferta-card__checkbox::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 6px;
  width: 5px;
  height: 10px;
  border: solid transparent;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  transition: border-color 0.2s ease;
}

.oferta-card__check input:checked + .oferta-card__checkbox {
  background: #FFCB00;
  border-color: #FFCB00;
}

.oferta-card__check input:checked + .oferta-card__checkbox::after {
  border-color: #000000;
}

.oferta-card__label {
  font-family: "Sora", sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #00FF00;
}

/* Variante Produto com Imagem */
.oferta-card--produto .oferta-card__body {
  flex-direction: row;
  align-items: center;
  gap: 16px;
}

.oferta-card__imagem {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 203, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.oferta-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

@media (max-width: 480px) {
  .oferta-card--produto .oferta-card__body {
    flex-direction: column;
    text-align: center;
  }

  .oferta-card__imagem {
    width: 100px;
    height: 100px;
    margin: 0 auto;
  }

  .oferta-card--produto .oferta-card__preco {
    text-align: center;
  }
}

/* Variante Destaque (card do meio) */
.oferta-card--destaque {
  border-color: #FFCB00;
  border-width: 2px;
}

.oferta-card--destaque .oferta-card__titulo {
  color: #FFFFFF;
}

.oferta-card--destaque .oferta-card__imagem {
  border: 2px solid rgba(255, 203, 0, 0.3);
  background: rgba(255, 203, 0, 0.15);
}

/* Variante Suporte (mais simples) */
.oferta-card--suporte {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.02);
}

.oferta-card--suporte .oferta-card__titulo {
  color: #FFFFFF;
}

.oferta-card--suporte .oferta-card__check {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.1);
}

.oferta-card--suporte .oferta-card__checkbox {
  border-color: rgba(255, 255, 255, 0.4);
}

.oferta-card--suporte .oferta-card__check input:checked + .oferta-card__checkbox {
  background: #139100;
  border-color: #139100;
}

.oferta-card--suporte .oferta-card__check input:checked + .oferta-card__checkbox::after {
  border-color: #FFFFFF;
}

.oferta-card--suporte .oferta-card__label {
  color: #CFCFCF;
}

/* ==========================================
   RESUMO DO PEDIDO
   ========================================== */

.resumo-pedido {
  background: rgba(0, 8, 49, 0.6);
  border: 1px solid rgba(255, 229, 0, 0.2);
  border-radius: 10px;
  padding: 16px;
  margin-bottom: 20px;
}

.resumo-pedido__linha {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "Sora", sans-serif;
  font-size: 14px;
  color: #CFCFCF;
  padding: 6px 0;
}

.resumo-pedido__extra {
  color: #00AC11;
}

.resumo-pedido__total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "Sora", sans-serif;
  padding: 12px 0 0;
  margin-top: 10px;
  border-top: 1px solid rgba(255, 229, 0, 0.2);
}

.resumo-pedido__total span {
  font-size: 14px;
  color: #FFFFFF;
}

.resumo-pedido__total strong {
  font-size: 22px;
  font-weight: 700;
  color: #FFFFFF;
}

.resumo-pedido__economia {
  font-family: "Sora", sans-serif;
  font-size: 13px;
  color: #00AC11;
  text-align: center;
  padding: 10px;
  margin-top: 12px;
  background: rgba(0, 172, 17, 0.1);
  border-radius: 6px;
}

.resumo-pedido__economia strong {
  font-weight: 600;
}

/* ==========================================
   BOTAO FULL WIDTH
   ========================================== */

.btn--full {
  width: 100%;
  justify-content: center;
}

/* Link de pular */
.link-pular {
  display: block;
  width: 100%;
  background: transparent;
  border: none;
  font-family: "Sora", sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #888888;
  text-align: center;
  padding: 14px;
  cursor: pointer;
  transition: color 0.2s ease;
}

.link-pular:hover {
  color: #CFCFCF;
}

/* Progress Steps - 4 Etapas */
.checkout-progress--4steps {
  gap: 8px;
}

.checkout-progress--4steps .checkout-progress__step {
  flex: 1;
  min-width: auto;
}

.checkout-progress--4steps .checkout-progress__circle {
  width: 32px;
  height: 32px;
}

.checkout-progress--4steps .checkout-progress__number {
  font-size: 13px;
}

.checkout-progress--4steps .checkout-progress__label {
  font-size: 10px;
}

.checkout-progress--4steps .checkout-progress__connector {
  flex: 0.5;
  min-width: 20px;
}

@media (max-width: 480px) {
  .checkout-progress--4steps .checkout-progress__circle {
    width: 28px;
    height: 28px;
  }

  .checkout-progress--4steps .checkout-progress__number {
    font-size: 11px;
  }

  .checkout-progress--4steps .checkout-progress__label {
    font-size: 9px;
  }

  .checkout-progress--4steps .checkout-progress__connector {
    min-width: 15px;
  }
}

/* ==========================================
   CHECKOUT TOTAL
   ========================================== */

.checkout-total {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 24px;
}

.checkout-total__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  font-size: 14px;
  color: var(--color-text-gray);
}

.checkout-total__divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 8px 0;
}

.checkout-total__final {
  padding-top: 12px;
}

.checkout-total__final span {
  font-size: 16px;
  font-weight: 600;
  color: #FFFFFF;
}

.checkout-total__final strong {
  font-size: 24px;
  font-weight: 800;
  color: #FFFFFF;
}

/* ==========================================
   CHECKOUT FORM - Novo Design
   ========================================== */

.checkout-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.checkout-form__group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.checkout-form__group label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #FFFFFF;
}

.checkout-form__group label svg {
  color: var(--color-gold);
}

.checkout-form__group input {
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 15px;
  color: #FFFFFF;
  font-family: var(--font-primary);
  transition: all 0.3s ease;
}

.checkout-form__group input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.checkout-form__group input:focus {
  outline: none;
  border-color: var(--color-orange);
  background: rgba(255, 130, 0, 0.08);
  box-shadow: 0 0 0 4px rgba(255, 130, 0, 0.15);
}

.checkout-form__hint {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--color-text-gray);
  margin-top: 4px;
}

.checkout-form__hint svg {
  color: var(--color-gold);
  opacity: 0.7;
}

/* Botao CTA do Checkout */
.btn-cta--checkout {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 24px;
  font-family: var(--font-primary);
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #FFFFFF;
  background: var(--gradient-main);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 8px;
  animation: ctaPulse 2s ease-in-out infinite;
}

.btn-cta--checkout:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 30px rgba(255, 130, 0, 0.4);
}

@keyframes ctaPulse {
  0%, 100% {
    box-shadow: 0 4px 20px rgba(255, 130, 0, 0.3);
  }
  50% {
    box-shadow: 0 4px 35px rgba(255, 130, 0, 0.5);
  }
}

/* ==========================================
   CHECKOUT SECURITY - Selos de Seguranca
   ========================================== */

.checkout-security {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.checkout-security__item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  color: var(--color-text-gray);
}

.checkout-security__item svg {
  color: #00FF00;
}

/* ==========================================
   PIX SECTION - Redesenhado
   ========================================== */

.checkout-pix {
  text-align: center;
}

.checkout-pix__timer {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: linear-gradient(135deg, rgba(255, 0, 0, 0.15) 0%, rgba(255, 100, 0, 0.15) 100%);
  border: 1px solid rgba(255, 0, 0, 0.3);
  border-radius: 50px;
  font-size: 14px;
  color: #FFFFFF;
  margin-bottom: 20px;
}

.checkout-pix__timer-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.checkout-pix__timer-icon svg {
  color: #FF4444;
}

.checkout-pix__timer strong {
  font-weight: 700;
  color: #FF4444;
  font-family: monospace;
  font-size: 16px;
}

.checkout-pix__qrcode {
  margin-bottom: 20px;
}

.checkout-pix__qrcode-wrapper {
  width: 220px;
  height: 220px;
  margin: 0 auto;
  background: #FFFFFF;
  border-radius: 16px;
  padding: 16px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3), 0 0 0 3px rgba(255, 203, 0, 0.3);
}

.checkout-pix__qrcode-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.checkout-pix__loading {
  position: absolute;
  inset: 0;
  background: #FFFFFF;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 16px;
}

.checkout-pix__loading.hidden {
  display: none;
}

.checkout-pix__loading span {
  font-size: 13px;
  color: #333333;
  font-weight: 500;
}

.spinner {
  width: 36px;
  height: 36px;
  border: 3px solid rgba(255, 130, 0, 0.2);
  border-top-color: var(--color-orange);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.checkout-pix__value {
  font-size: 14px;
  color: var(--color-text-gray);
  margin-bottom: 20px;
}

.checkout-pix__value strong {
  font-size: 28px;
  font-weight: 800;
  color: #FFFFFF;
  display: block;
  margin-top: 6px;
}

.checkout-pix__code {
  text-align: left;
  margin-bottom: 20px;
}

.checkout-pix__code label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 10px;
}

.checkout-pix__code-wrapper {
  display: flex;
  gap: 10px;
}

.checkout-pix__code-wrapper input {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 12px;
  color: var(--color-text-gray);
  font-family: 'Courier New', monospace;
}

.btn-copy {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: var(--gradient-main);
  border: none;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #FFFFFF;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-copy:hover {
  transform: scale(1.03);
  box-shadow: 0 4px 20px rgba(255, 130, 0, 0.4);
}

.checkout-pix__copied {
  display: none;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: #00FF00;
  margin-top: 10px;
}

.checkout-pix__copied.show {
  display: flex;
  animation: fadeInUp 0.3s ease;
}

.checkout-pix__instructions {
  text-align: left;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 20px;
}

.checkout-pix__instructions h4 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 12px;
}

.checkout-pix__instructions h4 svg {
  color: var(--color-gold);
}

.checkout-pix__instructions ol {
  padding-left: 24px;
  margin: 0;
}

.checkout-pix__instructions li {
  font-size: 13px;
  color: var(--color-text-gray);
  margin-bottom: 8px;
  line-height: 1.5;
}

.checkout-pix__instructions li strong {
  color: #FFFFFF;
}

.checkout-pix__instructions li::marker {
  color: var(--color-orange);
  font-weight: 700;
}

.checkout-pix__status {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px;
  background: linear-gradient(135deg, rgba(255, 130, 0, 0.1) 0%, rgba(47, 41, 242, 0.1) 100%);
  border: 1px solid rgba(255, 130, 0, 0.2);
  border-radius: 12px;
  font-size: 15px;
  font-weight: 500;
  color: #FFFFFF;
}

.checkout-pix__status-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.checkout-pix__status-icon svg {
  color: var(--color-orange);
  z-index: 1;
}

.pulse-ring {
  position: absolute;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--color-orange);
  animation: pulseRing 1.5s ease infinite;
}

@keyframes pulseRing {
  0% {
    transform: scale(0.7);
    opacity: 1;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

/* ==========================================
   SUCCESS STATE - Redesenhado
   ========================================== */

.checkout-success {
  text-align: center;
  padding: 10px 0;
}

.checkout-success__icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 20px;
  background: linear-gradient(180deg, #00C853 0%, #00A844 100%);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: successPop 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: 0 8px 40px rgba(0, 200, 83, 0.4);
}

@keyframes successPop {
  0% { transform: scale(0) rotate(-180deg); opacity: 0; }
  60% { transform: scale(1.2) rotate(10deg); }
  100% { transform: scale(1) rotate(0deg); opacity: 1; }
}

.checkout-success__icon svg {
  color: #FFFFFF;
}

.checkout-success__title {
  font-size: 26px;
  font-weight: 800;
  color: #00FF00;
  margin: 0 0 10px;
}

.checkout-success__subtitle {
  font-size: 15px;
  color: var(--color-text-gray);
  margin: 0 0 24px;
}

.checkout-success__details {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 18px;
  margin-bottom: 20px;
  text-align: left;
}

.checkout-success__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.checkout-success__row:last-child {
  border-bottom: none;
}

.checkout-success__row span {
  font-size: 14px;
  color: var(--color-text-gray);
}

.checkout-success__row strong {
  font-size: 15px;
  font-weight: 600;
  color: #FFFFFF;
}

.checkout-success__message {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 18px;
  background: rgba(0, 255, 0, 0.08);
  border: 1px solid rgba(0, 255, 0, 0.2);
  border-radius: 10px;
  margin-bottom: 20px;
  font-size: 14px;
  font-weight: 500;
  color: #00FF00;
}

.checkout-success__message svg {
  flex-shrink: 0;
}

.success-link {
  word-break: break-all;
  font-size: 13px;
  max-width: 180px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--color-gold) !important;
}

/* ==========================================
   RESPONSIVE CHECKOUT - Tablet
   ========================================== */

@media (max-width: 768px) {
  .checkout-modal {
    width: 95%;
    max-width: 480px;
    max-height: 92vh;
    margin: 4vh auto;
  }

  .checkout-progress {
    padding: 16px 20px;
  }

  .checkout-progress__connector {
    width: 40px;
  }

  .checkout-progress__circle {
    width: 36px;
    height: 36px;
  }

  .order-bump__title {
    font-size: 14px;
  }

  .order-bump__new-price strong {
    font-size: 20px;
  }
}

/* ==========================================
   RESPONSIVE CHECKOUT - Mobile
   ========================================== */

@media (max-width: 480px) {
  .checkout-overlay {
    padding: 0;
    align-items: flex-end;
  }

  .checkout-modal {
    width: 100%;
    max-width: 100%;
    max-height: 95vh;
    border-radius: 24px 24px 0 0;
    margin: 0;
    border-bottom: none;
  }

  .checkout-close {
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
  }

  .checkout-banner__img {
    border-radius: 22px 22px 0 0;
  }

  .checkout-progress {
    padding: 14px 16px;
  }

  .checkout-progress__step {
    min-width: 60px;
  }

  .checkout-progress__circle {
    width: 32px;
    height: 32px;
  }

  .checkout-progress__number {
    font-size: 13px;
  }

  .checkout-progress__label {
    font-size: 11px;
  }

  .checkout-progress__connector {
    width: 30px;
    margin-bottom: 18px;
  }

  .checkout-content {
    padding: 18px;
    max-height: calc(95vh - 160px);
  }

  /* Summary Mobile */
  .checkout-summary {
    padding: 14px;
    gap: 12px;
  }

  .checkout-summary__icon {
    width: 44px;
    height: 44px;
  }

  .checkout-summary__name {
    font-size: 16px;
  }

  .checkout-summary__credits {
    font-size: 13px;
  }

  .checkout-summary__price {
    font-size: 20px;
  }

  /* Order Bump Mobile */
  .order-bump__header {
    padding: 12px 14px;
  }

  .order-bump__fire {
    width: 32px;
    height: 32px;
  }

  .order-bump__title {
    font-size: 14px;
  }

  .order-bump__content {
    padding: 14px;
  }

  .order-bump__desc {
    font-size: 13px;
  }

  .order-bump__pricing {
    padding: 10px;
  }

  .order-bump__new-price strong {
    font-size: 20px;
  }

  .order-bump__checkbox {
    padding: 12px;
  }

  .order-bump__label {
    font-size: 13px;
  }

  /* Total Mobile */
  .checkout-total {
    padding: 14px;
    margin-bottom: 20px;
  }

  .checkout-total__final strong {
    font-size: 22px;
  }

  /* Form Mobile */
  .checkout-form {
    gap: 14px;
  }

  .checkout-form__group label {
    font-size: 13px;
  }

  .checkout-form__group input {
    padding: 12px 14px;
    font-size: 15px;
  }

  .checkout-form__hint {
    font-size: 12px;
  }

  .btn-cta--checkout {
    padding: 16px 22px;
    font-size: 16px;
    min-height: 52px;
  }

  /* Security Mobile */
  .checkout-security {
    gap: 14px;
    margin-top: 20px;
    padding-top: 16px;
  }

  .checkout-security__item {
    font-size: 12px;
  }

  /* PIX Mobile */
  .checkout-pix__timer {
    font-size: 13px;
    padding: 8px 16px;
  }

  .checkout-pix__qrcode-wrapper {
    width: 190px;
    height: 190px;
    padding: 14px;
  }

  .checkout-pix__value strong {
    font-size: 24px;
  }

  .checkout-pix__code label {
    font-size: 13px;
  }

  .checkout-pix__code-wrapper {
    flex-direction: column;
    gap: 10px;
  }

  .checkout-pix__code-wrapper input {
    font-size: 12px;
    padding: 12px;
  }

  .btn-copy {
    justify-content: center;
    padding: 14px;
    width: 100%;
    min-height: 48px;
  }

  .checkout-pix__instructions {
    padding: 16px;
  }

  .checkout-pix__instructions h4 {
    font-size: 14px;
  }

  .checkout-pix__instructions li {
    font-size: 13px;
  }

  .checkout-pix__status {
    padding: 16px;
    font-size: 14px;
  }

  /* Success Mobile */
  .checkout-success__icon {
    width: 72px;
    height: 72px;
  }

  .checkout-success__icon svg {
    width: 38px;
    height: 38px;
  }

  .checkout-success__title {
    font-size: 22px;
  }

  .checkout-success__subtitle {
    font-size: 14px;
  }

  .checkout-success__details {
    padding: 16px;
  }

  .checkout-success__row {
    padding: 10px 0;
  }

  .checkout-success__row span,
  .checkout-success__row strong {
    font-size: 13px;
  }

  .checkout-success__message {
    padding: 14px 16px;
    font-size: 13px;
  }
}

/* ==========================================
   RESPONSIVE CHECKOUT - Extra Small
   ========================================== */

@media (max-width: 360px) {
  .checkout-progress__label {
    display: none;
  }

  .checkout-progress__step {
    min-width: 40px;
  }

  .checkout-summary {
    flex-direction: column;
    text-align: center;
  }

  .checkout-summary__pricing {
    text-align: center;
  }

  .checkout-pix__qrcode-wrapper {
    width: 160px;
    height: 160px;
    padding: 12px;
  }

  .order-bump__pricing {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .order-bump__new-price {
    align-items: center;
  }
}
