/* ==============================================
   LOJA PANINI - COPA 2026
   Mobile-First Landing Page + Checkout
   ============================================== */

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

:root {
  --navy: #1a1f36;
  --navy-light: #2d3352;
  --burgundy: #7b2d3b;
  --burgundy-dark: #5a1f2c;
  --gold: #d4a843;
  --gold-light: #f0d78c;
  --green-cta: #22c55e;
  --green-cta-hover: #16a34a;
  --green-dark: #15803d;
  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --red: #ef4444;
  --blue-link: #3b82f6;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, .05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, .1), 0 2px 4px -2px rgba(0, 0, 0, .1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, .1), 0 4px 6px -4px rgba(0, 0, 0, .1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, .1), 0 8px 10px -6px rgba(0, 0, 0, .1);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 16px;
  --transition: all .3s ease;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: linear-gradient(135deg, #e8ecf4 0%, #d5dbe8 50%, #e8ecf4 100%);
  color: var(--gray-800);
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

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

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

button {
  cursor: pointer;
  border: none;
  font-family: inherit;
}

ul,
ol {
  list-style: none;
}

/* ---- Container ---- */
.container {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
}

/* ---- Wrapper (outer glow/shadow) ---- */
.page-wrapper {
  max-width: 520px;
  margin: 0 auto;
  background: var(--white);
  min-height: 100vh;
  box-shadow: 0 0 60px rgba(26, 31, 54, .15);
  position: relative;
  overflow: hidden;
}

/* ==============================================
   HEADER
   ============================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 3px solid var(--blue-link);
  padding: 10px 0;
  display: flex;
  justify-content: center;
}

.header-content {
  width: 100%;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.header-logo img {
  height: 52px;
  width: auto;
}

.header-urgency {
  display: flex;
  gap: 8px;
}

.urgency-box {
  background: var(--burgundy);
  color: var(--white);
  border-radius: var(--radius-sm);
  padding: 6px 12px;
  text-align: center;
  min-width: 90px;
}

.urgency-box__label {
  font-size: 10px;
  opacity: .9;
  letter-spacing: .3px;
}

.urgency-box__value {
  font-size: 22px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 2px;
}

.urgency-box__value .unit-label {
  font-size: 13px;
  font-weight: 600;
  margin-left: 3px;
  letter-spacing: 0;
}

/* ==============================================
   HERO SECTION
   ============================================== */
.hero {
  text-align: center;
  padding: 32px 20px 24px;
  background: var(--gray-50);
}

.hero__badge {
  display: inline-block;
  background: var(--gold-light);
  color: var(--gray-800);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 8px 20px;
  border-radius: 30px;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.hero__logo {
  width: 130px;
  margin: 0 auto 16px;
}

.hero__subtitle {
  font-size: 14px;
  letter-spacing: 6px;
  color: var(--gray-500);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.hero__countries {
  font-size: 15px;
  color: var(--gray-500);
  margin-bottom: 8px;
}

.hero__title {
  font-size: 52px;
  font-weight: 900;
  color: var(--gray-900);
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 20px;
}

.hero__desc {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.7;
  max-width: 380px;
  margin: 0 auto 12px;
}

.hero__limited {
  font-size: 15px;
  font-weight: 700;
  color: var(--gray-900);
}

/* ---- Product Image Section ---- */
.product-showcase {
  width: 100%;
  padding: 0;
  overflow: hidden;
}

.product-showcase img {
  width: 100%;
  display: block;
}

/* ==============================================
   KIT SELECTION
   ============================================== */
.kits-section {
  padding: 32px 16px;
  background: var(--white);
}

.section-title {
  text-align: center;
  font-size: 22px;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 6px;
}

.section-subtitle {
  text-align: center;
  font-size: 14px;
  color: var(--gray-500);
  margin-bottom: 24px;
}

.kits-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.kit-card {
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 16px 14px 10px;
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  display: flex;
  flex-direction: column;
}

.kit-card:hover,
.kit-card.active {
  border-color: var(--green-cta);
  box-shadow: 0 0 0 1px var(--green-cta);
}

.kit-card.active .kit-card__radio {
  border-color: var(--green-cta);
}

.kit-card.active .radio-dot {
  opacity: 1;
  transform: scale(1);
}

/* Discount badge top-right */
.kit-card__discount {
  position: absolute;
  top: -1px;
  right: -1px;
  background: var(--green-cta);
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 0 var(--radius-lg) 0 var(--radius-sm);
  z-index: 2;
}

/* MAIS VENDIDO / MELHOR CUSTO label */
.kit-card__label {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green-cta);
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
  padding: 4px 16px;
  border-radius: 20px;
  letter-spacing: .5px;
  white-space: nowrap;
  z-index: 2;
}

.kit-card__label--red {
  background: #ef4444;
}

/* Horizontal body */
.kit-card__body {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
}

/* Radio circle */
.kit-card__radio {
  width: 22px;
  height: 22px;
  min-width: 22px;
  border-radius: 50%;
  border: 2px solid var(--gray-300);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.radio-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--green-cta);
  opacity: 0;
  transform: scale(0);
  transition: var(--transition);
}

/* Thumbnail */
.kit-card__thumb {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  flex-shrink: 0;
}

/* Info text */
.kit-card__info {
  flex: 1;
  min-width: 0;
}

.kit-card__name {
  font-size: 15px;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 2px;
  line-height: 1.2;
}

.kit-card__desc {
  font-size: 12px;
  color: var(--gray-500);
  margin-bottom: 6px;
  line-height: 1.3;
}

/* Badges row */
.kit-card__badges {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.badge {
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  line-height: 1;
  white-space: nowrap;
}

.badge--green {
  background: #dcfce7;
  color: #15803d;
}

.badge--outline {
  background: var(--white);
  color: var(--gray-600);
  border: 1px solid var(--gray-300);
}

/* Pricing column */
.kit-card__pricing {
  text-align: right;
  flex-shrink: 0;
  min-width: 80px;
}

.kit-card__old-price {
  display: block;
  font-size: 12px;
  color: #ef4444;
  text-decoration: line-through;
  font-weight: 500;
  line-height: 1.2;
}

.kit-card__price {
  display: block;
  font-size: 22px;
  font-weight: 900;
  color: var(--gray-900);
  line-height: 1.2;
}

.kit-card__pix {
  font-size: 11px;
  color: var(--gray-400);
  display: block;
}

.kit-card__savings {
  font-size: 13px;
  color: var(--green-cta);
  font-weight: 600;
  text-align: center;
  margin-top: 10px;
  padding-top: 8px;
  border-top: 1px solid var(--gray-100);
}

.btn-cta {
  display: block;
  width: 100%;
  background: linear-gradient(135deg, var(--green-cta), var(--green-dark));
  color: var(--white);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .5px;
  text-align: center;
  padding: 16px 20px;
  border-radius: var(--radius);
  text-transform: uppercase;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  line-height: 1.3;
  box-shadow: 0 4px 14px rgba(34, 197, 94, .4);
  margin-top: 8px;
}

.btn-cta::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .3), transparent);
  animation: shimmer 2.5s infinite;
}

@keyframes shimmer {
  0% {
    left: -100%;
  }

  100% {
    left: 100%;
  }
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(34, 197, 94, .5);
}

.btn-cta__sub {
  display: block;
  font-size: 11px;
  font-weight: 500;
  opacity: .9;
  text-transform: none;
  margin-top: 4px;
  letter-spacing: 0;
}

/* ==============================================
   FEATURES / ABOUT
   ============================================== */
.features-section {
  padding: 40px 16px;
  background: var(--gray-50);
}

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

.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px 16px;
  text-align: center;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}

.feature-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.feature-card.full-width {
  grid-column: 1 / -1;
}

.feature-card__icon {
  font-size: 28px;
  margin-bottom: 8px;
}

.feature-card__title {
  font-size: 16px;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 4px;
}

.feature-card__desc {
  font-size: 12px;
  color: var(--gray-500);
}

/* ==============================================
   WHY BUY SECTION
   ============================================== */
.benefits-section {
  padding: 40px 16px;
  background: var(--white);
}

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

.benefit-card {
  background: var(--gray-50);
  border-radius: var(--radius);
  padding: 20px 16px;
  text-align: center;
  border: 1px solid var(--gray-100);
}

.benefit-card__icon {
  font-size: 28px;
  margin-bottom: 8px;
}

.benefit-card__title {
  font-size: 14px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 4px;
}

.benefit-card__desc {
  font-size: 12px;
  color: var(--gray-500);
}

/* ==============================================
   TESTIMONIALS
   ============================================== */
.testimonials-section {
  padding: 40px 16px;
  background: var(--gray-50);
}

.testimonials-grid {
  margin-top: 24px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 12px;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
}

.testimonial__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.testimonial__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
  object-fit: cover;
}

.testimonial__info h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--gray-900);
}

.testimonial__info span {
  font-size: 12px;
  color: var(--gray-400);
}

.testimonial__stars {
  color: var(--gold);
  font-size: 14px;
  margin-bottom: 8px;
}

.testimonial__title {
  font-size: 14px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 6px;
}

.testimonial__text {
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.6;
}

/* ==============================================
   FAQ
   ============================================== */
.faq-section {
  padding: 40px 16px;
  background: var(--white);
}

.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  margin-bottom: 8px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: var(--gray-300);
}

.faq-question {
  width: 100%;
  background: var(--gray-50);
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-800);
  text-align: left;
  transition: var(--transition);
}

.faq-question:hover {
  background: var(--gray-100);
}

.faq-question .chevron {
  font-size: 18px;
  color: var(--gray-400);
  transition: transform .3s ease;
}

.faq-item.open .faq-question .chevron {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s ease;
}

.faq-item.open .faq-answer {
  max-height: 200px;
  padding: 0 20px 16px;
}

.faq-answer p {
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.7;
}

/* ==============================================
   FOOTER
   ============================================== */
.site-footer {
  padding: 32px 16px;
  text-align: center;
  border-top: 1px solid var(--gray-200);
  background: var(--white);
}

.footer-logo img {
  height: 48px;
  margin: 0 auto 16px;
}

.footer-secure {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--gray-500);
  margin-bottom: 12px;
}

.footer-secure svg {
  width: 16px;
  height: 16px;
  fill: var(--gray-400);
}

.footer-company {
  font-size: 12px;
  color: var(--gray-400);
  line-height: 1.7;
}

/* ==============================================
   CHECKOUT PAGE
   ============================================== */
.checkout-wrapper {
  max-width: 520px;
  margin: 0 auto;
  background: var(--white);
  min-height: 100vh;
  box-shadow: 0 0 60px rgba(26, 31, 54, .15);
}

/* ---- Checkout Header ---- */
.checkout-header {
  background: var(--white);
  padding: 12px 16px;
  border-bottom: 1px solid var(--gray-200);
}

.checkout-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.checkout-header__logo {
  height: 44px;
  width: auto;
}

.checkout-header__secure {
  display: flex;
  align-items: center;
  gap: 6px;
}

.checkout-header__secure-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--green-cta);
  letter-spacing: .5px;
  line-height: 1.2;
}

.checkout-header__secure-text {
  display: block;
  font-size: 12px;
  font-weight: 800;
  color: var(--green-cta);
  line-height: 1.2;
}

.checkout-banner {
  background: var(--red);
  color: var(--white);
  text-align: center;
  padding: 14px 16px;
  font-size: 13px;
  line-height: 1.6;
}

.checkout-banner strong {
  font-weight: 700;
}

/* ---- Trust Bar ---- */
.trust-bar {
  background: none;
  padding: 0;
  line-height: 0;
}

.trust-bar__ra {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ra-badge {
  background: #fff;
  color: #333;
  font-size: 9px;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 4px;
  line-height: 1.3;
  text-align: center;
  display: block;
}

.ra-badge strong {
  color: #22a638;
}

.trust-bar__ra-text {
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.2;
}

.trust-bar__badges {
  display: flex;
  gap: 6px;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 700;
  color: var(--white);
  padding: 5px 10px;
  border-radius: 20px;
}

.trust-pill--green {
  background: #22a638;
}

.trust-pill--blue {
  background: #3b82f6;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
}

.trust-badge svg {
  width: 20px;
  height: 20px;
}

/* ---- Cart Summary ---- */
.cart-summary {
  margin: 16px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
}

.cart-summary--desktop {
  display: none;
}

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  cursor: pointer;
  background: var(--white);
}

.cart-header h3 {
  font-size: 16px;
  font-weight: 700;
}

.cart-badge {
  background: var(--burgundy);
  color: var(--white);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
}

.cart-body {
  padding: 16px;
  border-top: 1px solid var(--gray-200);
}

.cart-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.cart-item__img {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-sm);
  background: var(--gray-100);
  object-fit: cover;
}

.cart-item__info h4 {
  font-size: 14px;
  font-weight: 700;
}

.cart-item__info p {
  font-size: 12px;
  color: var(--gray-500);
}

.cart-item--bump {
  padding-top: 12px;
  border-top: 1px dashed var(--gray-200);
}

.cart-item__bump-price {
  color: var(--green-cta) !important;
  font-weight: 700;
}

.cart-totals {
  border-top: 1px solid var(--gray-200);
  padding-top: 12px;
}

.cart-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: var(--gray-600);
  margin-bottom: 6px;
}

.cart-row.total {
  font-size: 16px;
  font-weight: 800;
  color: var(--gray-900);
  border-top: 1px solid var(--gray-200);
  padding-top: 10px;
  margin-top: 6px;
}

.cart-row.total .amount {
  color: var(--red);
}

/* ---- PIX Trust Banner ---- */
.pix-trust-banner {
  padding: 20px 16px;
  margin: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.pix-trust-banner__logo {
  height: 50px;
  width: auto;
  object-fit: contain;
}

.pix-trust-banner__text {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.5;
}

/* ---- Shipping Options ---- */
.shipping-options {
  margin-top: 24px;
  margin-bottom: 8px;
}

.shipping-options__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 12px;
}

.shipping-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  margin-bottom: 10px;
  cursor: pointer;
  transition: var(--transition);
}

.shipping-option:has(input:checked) {
  border-color: var(--green-cta);
  background: #f0fdf4;
}

.shipping-option input[type="radio"] {
  width: 18px;
  height: 18px;
  accent-color: var(--green-cta);
  flex-shrink: 0;
  cursor: pointer;
}

.shipping-option__info {
  flex: 1;
}

.shipping-option__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2px;
}

.shipping-option__name {
  font-size: 14px;
  font-weight: 700;
  color: var(--gray-900);
}

.shipping-option__price {
  font-size: 14px;
  font-weight: 700;
  color: var(--gray-900);
}

.shipping-option__price--free {
  color: var(--green-cta);
  font-weight: 800;
}

.shipping-option__delivery {
  font-size: 12px;
  color: var(--gray-500);
}

.shipping-options__disclaimer {
  font-size: 11px;
  color: var(--gray-400);
  line-height: 1.5;
  margin-top: 8px;
}

/* ---- Steps ---- */
.checkout-steps {
  padding: 0 16px;
  margin-bottom: 24px;
}

/* ---- Labeled Step Indicator ---- */
.step-indicator-labeled {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-bottom: 24px;
  padding: 16px 0;
}

.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  min-width: 70px;
}

.step-item .step-dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gray-200);
  color: var(--gray-500);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  transition: var(--transition);
  flex-shrink: 0;
  border: 2px solid transparent;
}

.step-item.active .step-dot {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

.step-item.completed .step-dot {
  background: var(--green-cta);
  color: var(--white);
  border-color: var(--green-cta);
}

.step-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-500);
  text-align: center;
}

.step-item.active .step-label {
  color: var(--gray-900);
  font-weight: 700;
}

.step-line-flex {
  flex: 1;
  min-width: 20px;
  height: 3px;
  background: var(--gray-200);
  margin-top: 18px;
  transition: var(--transition);
}

.step-line-flex.active {
  background: var(--green-cta);
}

/* Keep old step-indicator and step-line for backward compat */
.step-indicator {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 0;
  margin-bottom: 24px;
}

.step-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gray-200);
  color: var(--gray-500);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  transition: var(--transition);
  flex-shrink: 0;
}

.step-dot.active {
  background: var(--green-cta);
  color: var(--white);
}

.step-dot.completed {
  background: var(--green-cta);
  color: var(--white);
}

.step-line {
  flex: 1;
  min-width: 20px;
  height: 3px;
  background: var(--gray-200);
  transition: var(--transition);
}

.step-line.active {
  background: var(--green-cta);
}

.step-panel {
  display: none;
}

.step-panel.active {
  display: block;
  animation: fadeIn .3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.step-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 16px;
}

/* Form Styles */
.form-group {
  margin-bottom: 14px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.form-group input {
  width: 100%;
  padding: 14px 16px;
  border: 2px dashed var(--gray-300);
  border-radius: var(--radius);
  font-size: 15px;
  color: var(--gray-800);
  transition: var(--transition);
  font-family: inherit;
  outline: none;
  background: var(--white);
}

.form-group input:focus {
  border-color: var(--green-cta);
  box-shadow: 0 0 0 3px rgba(34, 197, 94, .15);
}

.form-group input.error {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(220, 38, 38, .12);
}

.form-group input.valid {
  border-color: var(--green-cta);
  border-style: solid;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, .12);
}

.form-group .error-msg {
  font-size: 12px;
  color: var(--red);
  margin-top: 6px;
  display: none;
  animation: fadeSlideDown .25s ease;
}

@keyframes fadeSlideDown {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}

.form-group input.error+.error-msg {
  display: block;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.btn-step {
  width: 100%;
  padding: 14px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 700;
  transition: var(--transition);
  margin-top: 8px;
}

.btn-next {
  background: var(--green-cta);
  color: var(--white);
}

.btn-next:hover {
  background: var(--green-cta-hover);
}

.btn-next--red {
  background: var(--red);
  color: var(--white);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: .5px;
  padding: 16px;
  border-radius: var(--radius);
  margin-top: 16px;
}

.btn-next--red:hover {
  background: #b91c1c;
}

/* Security Info Box */
.security-info-box {
  border: 2px dashed var(--gray-200);
  border-radius: var(--radius);
  padding: 20px;
  margin-top: 20px;
}

.security-info-box__title {
  font-size: 14px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 16px;
  line-height: 1.5;
}

.security-info-box__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.security-info-box__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.5;
}

.security-info-box__list li svg {
  flex-shrink: 0;
  margin-top: 2px;
}

/* Reviews Section */
.reviews-section {
  padding: 16px;
  margin-bottom: 24px;
}

.review-card {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 16px;
  background: var(--white);
}

.review-card--header {
  border: 1px solid var(--gray-200);
}

.review-card__ra-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.ra-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid #22a638;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 900;
  color: #22a638;
  flex-shrink: 0;
}

.review-card__ra-header h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--gray-900);
}

.review-card__ra-header p {
  font-size: 13px;
  color: var(--gray-500);
}

.review-stars {
  color: #fbbf24;
  font-size: 18px;
  letter-spacing: 2px;
}

.review-card__author {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.review-card__author img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.review-card__author span {
  font-size: 15px;
  font-weight: 700;
  color: var(--gray-900);
}

.review-card__text {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 12px;
}

.btn-back {
  background: var(--gray-100);
  color: var(--gray-600);
  margin-top: 8px;
}

.btn-back:hover {
  background: var(--gray-200);
}

/* ---- Payment Method ---- */
.payment-method {
  margin-bottom: 24px;
}

.payment-method__option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border: 2px solid var(--green-cta);
  border-radius: var(--radius);
  cursor: pointer;
  background: #f0fdf4;
}

.payment-method__option input[type="radio"] {
  width: 18px;
  height: 18px;
  accent-color: var(--green-cta);
  flex-shrink: 0;
}

.payment-method__logo {
  height: 32px;
  width: auto;
  object-fit: contain;
}

.payment-method__info {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.6;
  margin-top: 12px;
}

/* ---- Order Bumps ---- */
.orderbumps {
  margin-top: 28px;
  margin-bottom: 24px;
}

.orderbumps__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 14px;
}

.orderbump {
  border: 2px dashed var(--gray-300);
  border-radius: var(--radius);
  padding: 14px;
  margin-bottom: 14px;
  transition: var(--transition);
}

.orderbump.active {
  border-color: var(--green-cta);
  border-style: solid;
  background: #f0fdf4;
}

.orderbump__content {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 12px;
}

.orderbump__img {
  width: 70px;
  height: 70px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}

.orderbump__info {
  flex: 1;
}

.orderbump__name {
  font-size: 13px;
  font-weight: 800;
  color: var(--gray-900);
  text-transform: uppercase;
  line-height: 1.4;
  margin-bottom: 4px;
}

.orderbump__desc {
  font-size: 11px;
  color: var(--gray-500);
  text-transform: uppercase;
  line-height: 1.4;
  margin-bottom: 6px;
}

.orderbump__prices {
  display: flex;
  align-items: center;
  gap: 8px;
}

.orderbump__old-price {
  font-size: 13px;
  color: var(--gray-400);
  text-decoration: line-through;
}

.orderbump__price {
  font-size: 16px;
  font-weight: 800;
  color: var(--green-cta);
}

.orderbump__btn {
  width: 100%;
  padding: 10px;
  border: 2px solid var(--green-cta);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--green-cta);
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.orderbump__btn:hover {
  background: var(--green-cta);
  color: var(--white);
}

.orderbump.active .orderbump__btn {
  background: var(--green-cta);
  color: var(--white);
}

.orderbumps__disclaimer {
  font-size: 12px;
  color: var(--red);
  font-weight: 600;
  text-align: center;
  margin-top: 8px;
}

/* PIX Payment */
.pix-container {
  text-align: center;
  padding: 20px 0;
}

.pix-loading {
  margin: 40px auto;
}

.pix-loading .spinner {
  width: 48px;
  height: 48px;
  border: 4px solid var(--gray-200);
  border-top-color: var(--green-cta);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 16px;
}

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

.pix-loading p {
  font-size: 14px;
  color: var(--gray-500);
}

.pix-qrcode {
  display: none;
}

.pix-qrcode.visible {
  display: block;
}

.pix-qrcode img {
  width: 220px;
  height: 220px;
  margin: 0 auto 16px;
  border-radius: var(--radius);
  border: 2px solid var(--gray-200);
}

.pix-copypaste {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 12px;
  margin: 12px 0;
  word-break: break-all;
  font-size: 12px;
  color: var(--gray-600);
  max-height: 60px;
  overflow: hidden;
}

.btn-copy {
  background: var(--navy);
  color: var(--white);
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  width: 100%;
  transition: var(--transition);
}

.btn-copy:hover {
  background: var(--navy-light);
}

.pix-status {
  margin-top: 20px;
  padding: 12px;
  border-radius: var(--radius-sm);
  font-size: 13px;
}

.pix-status.waiting {
  background: #fef3c7;
  color: #92400e;
  border: 1px solid #fbbf24;
}

.pix-status.paid {
  background: #d1fae5;
  color: #065f46;
  border: 1px solid #34d399;
}

/* PIX Header */
.pix-header {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: var(--radius);
  padding: 14px 16px;
  margin-bottom: 16px;
  text-align: left;
}

.pix-header__title {
  font-size: 16px;
  font-weight: 800;
  color: var(--gray-900);
  margin: 0;
}

.pix-header__subtitle {
  font-size: 12px;
  color: var(--gray-500);
  margin: 2px 0 0;
}

/* PIX Timer */
.pix-timer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #fff7ed;
  border: 1px solid #fed7aa;
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  margin-bottom: 20px;
  font-size: 14px;
  color: #92400e;
}

.pix-timer strong {
  font-size: 18px;
  font-weight: 800;
  color: #c2410c;
  font-variant-numeric: tabular-nums;
}

/* PIX QR Wrapper */
.pix-qr-wrapper {
  margin-bottom: 16px;
}

.pix-qr-img {
  width: 220px;
  height: 220px;
  margin: 0 auto 10px;
  border-radius: var(--radius);
  border: 3px solid var(--gray-200);
  display: block;
  background: #fff;
}

.pix-qr-hint {
  font-size: 13px;
  color: var(--gray-500);
  margin: 0;
}

/* PIX Divider */
.pix-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 16px 0;
  color: var(--gray-400);
  font-size: 12px;
}

.pix-divider::before,
.pix-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--gray-200);
}

/* PIX Copy Wrapper */
.pix-copy-wrapper {
  margin-bottom: 20px;
}

/* PIX Instructions */
.pix-instructions {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 16px;
  margin-bottom: 16px;
  text-align: left;
}

.pix-instructions__title {
  font-size: 14px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 10px;
}

.pix-instructions__list {
  padding-left: 20px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pix-instructions__list li {
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.5;
}

/* PIX Security */
.pix-security {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 16px;
  font-size: 12px;
  color: var(--gray-400);
  flex-wrap: wrap;
}


/* ==============================================
   SUCCESS PAGE
   ============================================== */
/* ==============================================
   PAYMENT PAGE
   ============================================== */
.payment-wrapper {
  max-width: 520px;
  margin: 0 auto;
  background: var(--white);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.payment-content {
  flex: 1;
  padding: 20px 16px 32px;
}

.payment-order-summary {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: var(--radius);
  padding: 12px 16px;
  margin-bottom: 20px;
}

.payment-order-summary__inner {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  flex-wrap: wrap;
}

.payment-order-summary__label {
  color: var(--gray-500);
}

.payment-order-summary__kit {
  font-weight: 700;
  color: var(--gray-900);
}

.payment-order-summary__sep {
  color: var(--gray-300);
}

.payment-order-summary__amount {
  font-weight: 800;
  color: var(--green-cta);
  font-size: 16px;
}

.payment-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .06);
}

.payment-banks-hint {
  font-size: 12px;
  color: var(--gray-400);
  text-align: center;
  margin-top: 16px;
  line-height: 1.5;
}

/* PIX expired status */
.pix-status.expired {
  background: #fef3c7;
  color: #92400e;
  border: 1px solid #fbbf24;
}

.pix-status.expired a {
  color: #92400e;
  font-weight: 700;
  text-decoration: underline;
}

/* ==============================================
   SUCCESS PAGE
   ============================================== */
.success-wrapper {
  max-width: 520px;
  margin: 0 auto;
  background: var(--white);
  min-height: 100vh;
}


.success-icon {
  width: 80px;
  height: 80px;
  background: var(--green-cta);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  animation: popIn .5s ease;
}

@keyframes popIn {
  0% {
    transform: scale(0);
  }

  80% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}

.success-icon svg {
  width: 40px;
  height: 40px;
  fill: var(--white);
}

.success-title {
  font-size: 24px;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 12px;
}

.success-text {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 32px;
}

.order-details {
  background: var(--gray-50);
  border-radius: var(--radius);
  padding: 20px;
  text-align: left;
  margin-bottom: 24px;
}

.order-details h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
}

.order-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  padding: 6px 0;
  border-bottom: 1px solid var(--gray-200);
}

.order-row:last-child {
  border-bottom: none;
}

.order-row .label {
  color: var(--gray-500);
}

.order-row .value {
  color: var(--gray-900);
  font-weight: 600;
}

/* Success Delivery Info */
.success-delivery-info {
  text-align: left;
  margin: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.success-delivery-info__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px;
  background: var(--gray-50);
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
}

.success-delivery-info__icon {
  font-size: 22px;
  flex-shrink: 0;
  margin-top: 2px;
}

.success-delivery-info__item strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 4px;
}

.success-delivery-info__item p {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.5;
  margin: 0;
}

/* ==============================================
   UTILITIES
   ============================================== */

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

.mt-8 {
  margin-top: 8px;
}

.mt-16 {
  margin-top: 16px;
}

.mt-24 {
  margin-top: 24px;
}

.mb-8 {
  margin-bottom: 8px;
}

.mb-16 {
  margin-bottom: 16px;
}

/* Hide/Show */
.hidden {
  display: none !important;
}

/* ==============================================
   RESPONSIVE (DESKTOP)
   ============================================== */
@media (min-width: 768px) {
  .page-wrapper {
    max-width: 100%;
  }

  .checkout-wrapper {
    max-width: 1024px;
  }

  .site-header {
    padding: 16px 0;
    justify-content: center;
  }

  .header-content {
    width: 100%;
    max-width: 1100px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    margin: 0 auto;
  }

  .features-grid,
  .benefits-grid,
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-card.full-width {
    grid-column: span 2;
  }
}

@media (min-width: 1024px) {

  /* ---- Layout ---- */
  .container {
    max-width: 1100px;
  }

  .page-wrapper>section {
    max-width: 1100px;
    margin: 0 auto;
  }

  .site-header {
    border-bottom-width: 4px;
  }

  /* ---- Hero ---- */
  .hero {
    padding: 60px 20px;
  }

  .hero__title {
    font-size: 72px;
  }

  .hero__desc {
    font-size: 18px;
    max-width: 600px;
  }

  /* ---- Features ---- */
  .features-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .feature-card.full-width {
    grid-column: auto;
  }

  /* ---- Kits Grid ---- */
  .kits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
  }

  .kit-card {
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    height: 100%;
  }

  .kit-card__body {
    flex-direction: column;
    text-align: center;
    margin-bottom: auto;
  }

  .kit-card__radio {
    margin-bottom: 8px;
    margin-right: 0;
  }

  .kit-card__thumb {
    width: 120px;
    height: 120px;
    margin-bottom: 12px;
  }

  .kit-card__info {
    text-align: center;
    width: 100%;
    margin-bottom: 16px;
  }

  .kit-card__badges {
    justify-content: center;
    margin-top: 8px;
  }

  .kit-card__pricing {
    text-align: center;
    margin-top: auto;
    width: 100%;
    border-top: 1px dashed var(--gray-200);
    padding-top: 12px;
  }

  .kit-card__label {
    top: -16px;
    padding: 6px 20px;
    font-size: 12px;
  }

  .btn-cta {
    max-width: 400px;
    margin: 32px auto 0;
    font-size: 18px;
    padding: 20px;
  }

  /* ---- Testimonials ---- */
  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .testimonial-card {
    margin-bottom: 0;
    height: 100%;
  }

  /* ---- Checkout ---- */
  .checkout-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    padding: 40px 20px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: start;
  }

  .checkout-layout-left {
    order: 1;
  }

  .checkout-layout-right {
    order: 2;
    position: sticky;
    top: 24px;
  }

  .checkout-steps {
    padding: 0;
    margin-bottom: 0;
  }

  .checkout-timer {
    margin: 0 0 24px 0;
  }

  .cart-summary {
    display: none;
  }

  .cart-summary--desktop {
    display: block;
    margin: 0;
  }

  .reviews-section {
    padding: 0;
  }
}