/* ==========================================================================
   OFERTAS AÍ — LANDING PAGE OFFICIAL BRAND STYLES (AQ-03F)
   Canonical Guideline Reference: diretriz_identidade_visual.png & brand_spec.json
   ========================================================================== */

:root {
  /* Brand Official Palette */
  --brand-yellow: #FFC107;         /* Amarelo Ofertas (Destaque, Raio, Tag Aí) */
  --brand-yellow-glow: rgba(255, 193, 7, 0.4);
  --brand-blue: #007BFF;           /* Azul Ofertas (Carrinho, Badges de Confiança) */
  --brand-blue-hover: #0056b3;
  --brand-dark: #0D1117;           /* Azul Escuro / Grafite Base de Fundo */
  --brand-card-bg: #161B22;        /* Superfície dos Cards */
  --brand-card-hover: #21262D;     /* Hover do Card */
  --brand-white: #FFFFFF;          /* Branco Puro para Títulos e Destaques */
  --brand-muted: #8B949E;          /* Cinza Médio / Apoio */
  --brand-light-gray: #C9D1D9;     /* Cinza Claro para Subtítulos */
  
  --brand-green: #22C55E;          /* Verde Sucesso (WhatsApp, Preço Atual) */
  --brand-green-hover: #16A34A;
  --brand-green-glow: rgba(34, 197, 94, 0.4);
  --brand-orange: #F97316;         /* Laranja Alerta (Urgência, Desconto %) */
  --brand-orange-glow: rgba(249, 115, 22, 0.35);

  --border-subtle: rgba(240, 246, 252, 0.1);
  --border-card: rgba(240, 246, 252, 0.15);

  /* Typography (Montserrat Brand Standard) */
  --font-brand: 'Montserrat', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  
  /* Sizing & Radius */
  --container-max: 1120px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-full: 9999px;
  
  --shadow-card: 0 10px 28px -6px rgba(0, 0, 0, 0.7);
  --shadow-btn-green: 0 8px 24px -4px var(--brand-green-glow);
  --shadow-btn-blue: 0 8px 24px -4px rgba(0, 123, 255, 0.4);
}

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

html {
  font-family: var(--font-brand);
  background-color: var(--brand-dark);
  color: var(--brand-white);
  scroll-behavior: smooth;
  -webkit-tap-highlight-color: transparent;
}

body {
  line-height: 1.5;
  min-height: 100vh;
  padding-bottom: 78px; /* Safe space for sticky mobile bar */
  overflow-x: hidden;
  background: radial-gradient(circle at 50% 0%, #161e2e 0%, var(--brand-dark) 55%);
}

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

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

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* ==========================================================================
   TOP HEADER & CANONICAL BRAND LOGO
   ========================================================================== */
.top-nav {
  background-color: rgba(13, 17, 23, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--border-subtle);
  padding: 12px 0;
}

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

/* Canonical Vector Logo */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  user-select: none;
}

.brand-speed-lines {
  display: flex;
  flex-direction: column;
  gap: 3px;
  align-items: flex-end;
}

.brand-speed-lines span {
  display: block;
  height: 3px;
  background-color: var(--brand-yellow);
  border-radius: var(--radius-full);
}

.brand-speed-lines span:nth-child(1) { width: 14px; }
.brand-speed-lines span:nth-child(2) { width: 22px; }
.brand-speed-lines span:nth-child(3) { width: 10px; }

.brand-text-block {
  display: flex;
  flex-direction: column;
}

.brand-main-row {
  display: flex;
  align-items: center;
  gap: 4px;
}

.brand-wordmark {
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--brand-white);
  line-height: 1;
}

.brand-tag-ai {
  background: var(--brand-yellow);
  color: var(--brand-dark);
  font-size: 1.15rem;
  font-weight: 900;
  font-style: italic;
  padding: 1px 7px;
  border-radius: 6px;
  line-height: 1.1;
  display: inline-block;
  box-shadow: 0 2px 8px var(--brand-yellow-glow);
}

.brand-cart-icon {
  width: 22px;
  height: 22px;
  color: var(--brand-blue);
  margin-left: 2px;
  filter: drop-shadow(0 2px 6px rgba(0, 123, 255, 0.4));
}

.brand-slogan {
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--brand-blue);
  margin-top: 3px;
}

.footer-logo {
  justify-content: center;
  margin-bottom: 8px;
}

/* Top Live Status Badge */
.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.35);
  padding: 5px 12px;
  border-radius: var(--radius-full);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: var(--brand-green);
  border-radius: 50%;
  animation: pulse-green 2s infinite;
}

.badge-text {
  font-size: 0.72rem;
  font-weight: 800;
  color: #4ade80;
  letter-spacing: 0.04em;
}

@keyframes pulse-green {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 6px rgba(34, 197, 94, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
  }
}

/* ==========================================================================
   BUTTONS & CTAs WITH REAL WHATSAPP ICON
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-brand);
  font-weight: 800;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  user-select: none;
  position: relative;
}

.btn-primary {
  background: linear-gradient(135deg, #22C55E 0%, #16A34A 100%);
  color: #FFFFFF;
  box-shadow: var(--shadow-btn-green);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -4px var(--brand-green-glow);
  background: linear-gradient(135deg, #4ade80 0%, #16A34A 100%);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-cta {
  width: 100%;
  max-width: 440px;
  padding: 16px 20px;
  font-size: 1.02rem;
  letter-spacing: 0.02em;
}

.btn-large {
  padding: 18px 30px;
  font-size: 1.12rem;
}

.btn-pulse {
  animation: cta-pulse 3s infinite;
}

@keyframes cta-pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 var(--brand-green-glow);
  }
  50% {
    box-shadow: 0 0 25px 5px var(--brand-green-glow);
  }
}

.whatsapp-icon {
  width: 22px;
  height: 22px;
  min-width: 22px;
  flex-shrink: 0;
}

.whatsapp-icon-sm {
  width: 18px;
  height: 18px;
  min-width: 18px;
  flex-shrink: 0;
}

.cta-microcopy {
  display: block;
  font-size: 0.8rem;
  color: var(--brand-muted);
  margin-top: 10px;
  font-weight: 500;
}

/* ==========================================================================
   HERO SECTION & TRUST PILLARS
   ========================================================================== */
.hero-section {
  padding: 48px 0 38px 0;
  text-align: center;
}

.hero-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 193, 7, 0.1);
  border: 1px solid rgba(255, 193, 7, 0.35);
  padding: 7px 16px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--brand-yellow);
  margin-bottom: 22px;
  letter-spacing: 0.04em;
}

.badge-icon-lightning {
  width: 16px;
  height: 16px;
}

.hero-title {
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  color: var(--brand-white);
  max-width: 740px;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--brand-light-gray);
  max-width: 620px;
  margin-bottom: 26px;
  line-height: 1.55;
}

/* Trust Pillars */
.trust-pillars-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-bottom: 30px;
  width: 100%;
  max-width: 720px;
}

.pillar-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(22, 27, 34, 0.7);
  border: 1px solid var(--border-subtle);
  padding: 8px 16px;
  border-radius: var(--radius-full);
}

.pillar-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.pillar-icon-yellow {
  color: var(--brand-yellow);
}

.pillar-icon-blue {
  color: var(--brand-blue);
}

.pillar-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.pillar-text strong {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--brand-white);
}

.pillar-text span {
  font-size: 0.68rem;
  color: var(--brand-muted);
}

.hero-cta-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ==========================================================================
   OFFERS SHOWCASE SECTION
   ========================================================================== */
.offers-section {
  padding: 40px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--brand-yellow);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.tag-lightning-mini {
  width: 14px;
  height: 14px;
}

.section-title {
  font-size: 1.8rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--brand-white);
  margin-bottom: 10px;
}

.live-proof-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.3);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 800;
  color: #4ade80;
  letter-spacing: 0.03em;
  margin-bottom: 10px;
}

.live-proof-dot {
  width: 7px;
  height: 7px;
  background-color: var(--brand-green);
  border-radius: 50%;
}

.section-subtitle {
  font-size: 0.92rem;
  color: var(--brand-light-gray);
}

/* Offers Carousel Wrapper with Navigation Arrows */
.offers-carousel-wrapper {
  position: relative;
  width: 100%;
  margin: 0 auto;
}

.offers-carousel {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  gap: 18px;
  padding: 10px 4px 24px 4px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
}

.offers-carousel::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

/* Responsive Offer Card Sizing in Carousel */
.offer-card, .offer-skeleton {
  flex: 0 0 88%; /* Mobile: 88% width so the next card is partially visible */
  max-width: 320px;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

@media (min-width: 640px) {
  .offer-card, .offer-skeleton {
    flex: 0 0 calc(50% - 12px);
    max-width: 340px;
  }
}

@media (min-width: 1024px) {
  .offer-card, .offer-skeleton {
    flex: 0 0 calc(33.333% - 14px); /* Desktop: 3 cards fully visible */
    max-width: 360px;
  }
}

/* Carousel Navigation Buttons (Desktop) */
.carousel-nav-btn {
  display: none;
  position: absolute;
  top: calc(50% - 24px);
  width: 44px;
  height: 44px;
  background: rgba(22, 27, 34, 0.95);
  backdrop-filter: blur(8px);
  border: 1px solid var(--brand-yellow);
  color: var(--brand-yellow);
  border-radius: var(--radius-full);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 20;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.6);
  transition: all 0.2s ease;
}

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

.carousel-nav-btn:hover {
  background: var(--brand-yellow);
  color: var(--brand-dark);
  transform: scale(1.08);
  box-shadow: 0 0 20px var(--brand-yellow-glow);
}

.carousel-prev {
  left: -22px;
}

.carousel-next {
  right: -22px;
}

@media (min-width: 1024px) {
  .carousel-nav-btn {
    display: flex;
  }
}

/* Offer Card */
.offer-card {
  background-color: var(--brand-card-bg);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  position: relative;
}

.offer-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 193, 7, 0.4);
  box-shadow: 0 14px 34px -4px rgba(0, 0, 0, 0.85);
}

.card-media {
  position: relative;
  width: 100%;
  background-color: #FFFFFF;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 14px;
  transition: transform 0.3s ease;
}

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

.badge-discount {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--brand-orange);
  color: #FFFFFF;
  font-weight: 900;
  font-size: 0.82rem;
  padding: 5px 11px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 12px var(--brand-orange-glow);
  letter-spacing: 0.02em;
}

.badge-store {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(13, 17, 23, 0.88);
  backdrop-filter: blur(8px);
  color: var(--brand-light-gray);
  font-weight: 800;
  font-size: 0.72rem;
  padding: 5px 11px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-subtle);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.card-body {
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
}

.card-title {
  font-size: 1.02rem;
  font-weight: 700;
  color: #F0F6FC;
  line-height: 1.38;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.price-wrapper {
  margin-bottom: 18px;
}

.price-old {
  font-size: 0.84rem;
  color: var(--brand-muted);
  text-decoration: line-through;
  margin-bottom: 2px;
  font-weight: 600;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.price-current {
  font-size: 1.65rem;
  font-weight: 900;
  color: var(--brand-yellow);
  letter-spacing: -0.02em;
}

.badge-cupom {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255, 193, 7, 0.12);
  border: 1px dashed var(--brand-yellow);
  color: var(--brand-yellow);
  font-size: 0.76rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  margin-top: 8px;
  letter-spacing: 0.03em;
}

/* Action Blue Button from Brand Guidelines (#007BFF) */
.btn-deal {
  width: 100%;
  padding: 14px;
  font-size: 0.98rem;
  font-weight: 800;
  background: var(--brand-blue);
  color: #FFFFFF;
  border-radius: var(--radius-md);
  border: none;
  box-shadow: var(--shadow-btn-blue);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  letter-spacing: 0.04em;
  cursor: pointer;
  position: relative;
  z-index: 10;
}

.btn-deal:hover {
  background: var(--brand-blue-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 123, 255, 0.5);
}

.btn-deal:active {
  transform: translateY(0);
}

.offers-notice {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--brand-muted);
  text-align: center;
  margin-top: 26px;
}

.offers-funnel-reinforcement {
  text-align: center;
  margin-top: 14px;
  padding: 14px 20px;
  background: rgba(255, 193, 7, 0.06);
  border: 1px dashed rgba(255, 193, 7, 0.35);
  border-radius: var(--radius-md);
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.offers-funnel-reinforcement p {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--brand-yellow);
  letter-spacing: 0.02em;
}

.offers-funnel-reinforcement span {
  font-size: 0.85rem;
  color: var(--brand-light-gray);
  font-weight: 600;
}

/* Skeleton Loading */
.offer-skeleton {
  background-color: var(--brand-card-bg);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.skeleton-img {
  width: 100%;
  aspect-ratio: 1/1;
  background-color: #21262D;
  border-radius: var(--radius-md);
  animation: skeleton-shimmer 1.5s infinite;
}

.skeleton-line {
  height: 16px;
  background-color: #21262D;
  border-radius: var(--radius-sm);
  animation: skeleton-shimmer 1.5s infinite;
}

.skeleton-line.full { width: 100%; }
.skeleton-line.half { width: 60%; }

.skeleton-btn {
  height: 48px;
  background-color: #21262D;
  border-radius: var(--radius-md);
  margin-top: 6px;
  animation: skeleton-shimmer 1.5s infinite;
}

@keyframes skeleton-shimmer {
  0% { opacity: 0.4; }
  50% { opacity: 0.8; }
  100% { opacity: 0.4; }
}

/* ==========================================================================
   URGENCY / INTERMEDIATE CTA
   ========================================================================== */
.urgency-section {
  padding: 34px 0;
}

.urgency-card {
  background: linear-gradient(145deg, #1C2128 0%, #161B22 100%);
  border: 1px solid rgba(255, 193, 7, 0.35);
  border-radius: var(--radius-lg);
  padding: 38px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 12px 40px -10px rgba(255, 193, 7, 0.15);
}

.urgency-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--brand-yellow);
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}

.urgency-title {
  font-size: 1.7rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  color: var(--brand-white);
}

.urgency-text {
  font-size: 1rem;
  color: var(--brand-light-gray);
  max-width: 560px;
  margin-bottom: 26px;
  line-height: 1.55;
}

.urgency-cta {
  width: 100%;
  display: flex;
  justify-content: center;
}

/* ==========================================================================
   HOW IT WORKS SECTION
   ========================================================================== */
.how-it-works-section {
  padding: 48px 0;
}

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

.step-card {
  background-color: var(--brand-card-bg);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 26px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step-badge {
  width: 44px;
  height: 44px;
  background: var(--brand-yellow);
  color: var(--brand-dark);
  font-size: 1.25rem;
  font-weight: 900;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  box-shadow: 0 4px 14px var(--brand-yellow-glow);
}

.step-title {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--brand-white);
}

.step-desc {
  font-size: 0.92rem;
  color: var(--brand-light-gray);
  line-height: 1.5;
}

/* ==========================================================================
   FINAL CTA
   ========================================================================== */
.final-cta-section {
  padding: 48px 0 34px 0;
  text-align: center;
}

.final-cta-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.final-cta-title {
  font-size: 1.9rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--brand-white);
  margin-bottom: 14px;
}

.final-cta-text {
  font-size: 1.05rem;
  color: var(--brand-light-gray);
  margin-bottom: 28px;
  max-width: 540px;
}

.final-btn-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  border-top: 1px solid var(--border-subtle);
  padding: 36px 0 16px 0;
  text-align: center;
  background-color: #070A0E;
}

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

.footer-disclaimer {
  font-size: 0.82rem;
  color: var(--brand-muted);
  max-width: 560px;
  line-height: 1.5;
}

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

/* ==========================================================================
   STICKY MOBILE CTA
   ========================================================================== */
.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(13, 17, 23, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--border-card);
  padding: 10px 16px;
  z-index: 99;
  box-shadow: 0 -6px 24px rgba(0, 0, 0, 0.6);
  transform: translateY(0);
  transition: transform 0.3s ease;
}

.sticky-content {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.sticky-text-wrapper {
  display: flex;
  flex-direction: column;
}

.sticky-headline {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--brand-white);
}

.sticky-subline {
  font-size: 0.72rem;
  color: #4ade80;
  font-weight: 700;
}

.btn-sticky {
  padding: 11px 18px;
  font-size: 0.88rem;
  border-radius: var(--radius-full);
  white-space: nowrap;
  gap: 7px;
}

.btn-arrow {
  font-size: 1rem;
  transition: transform 0.2s ease;
}

.btn-sticky:hover .btn-arrow {
  transform: translateX(3px);
}

/* ==========================================================================
   RESPONSIVE DESIGN (TABLET & DESKTOP)
   ========================================================================== */
@media (min-width: 640px) {
  .hero-title {
    font-size: 2.8rem;
  }
  
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  body {
    padding-bottom: 0;
  }

  .sticky-bar {
    display: none;
  }

  .hero-title {
    font-size: 3.4rem;
  }

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