/* ===================================
   G. STORE — CSS
   Paleta: #0e0f12 (fundo), #1e5fd9 (destaque), #fff (textos)
   Estilo: Urbano / Streetwear / Mobile-First
   =================================== */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@400;500;600;700&display=swap');

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

:root {
  --bg:             #0e0f12;
  --bg-card:        #15161b;
  --bg-card-hover:  #1a1b22;
  --bg-modal:       #14151a;
  --accent:         #1e5fd9;
  --accent-light:   #3b7bef;
  --white:          #ffffff;
  --gray:           #8a8d98;
  --gray-light:     #c5c7ce;
  --green:          #22c55e;
  --red:            #ef4444;
  --radius:         14px;
  --radius-sm:      8px;
  --font-display:   'Bebas Neue', sans-serif;
  --font-body:      'Inter', sans-serif;
  --header-h:       70px;
}

html { 
  scroll-behavior: smooth; 
  -webkit-tap-highlight-color: transparent;
}

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ---------- HEADER ---------- */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1rem, 4vw, 3rem);
  background: rgba(14, 15, 18, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  z-index: 1000;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Logo Redondo no Header (Corta o quadrado branco) */
.header__logo img {
  height: 44px;
  width: 44px;
  border-radius: 50%;
  clip-path: circle(50%);
  object-fit: cover;
  border: 1px solid rgba(30, 95, 217, 0.4);
  box-shadow: 0 0 10px rgba(30, 95, 217, 0.3);
}

.header__logo-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 3px;
  color: var(--white);
}

.header__logo-text span {
  color: var(--accent);
}

/* WhatsApp button */
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 22px;
  background: #25D366;
  color: #fff;
  font-weight: 700;
  font-size: 0.875rem;
  border-radius: 50px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  text-decoration: none;
  min-height: 44px;
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.35);
  background: #20bd5a;
}

.btn-whatsapp svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  flex-shrink: 0;
}

/* ---------- HERO ---------- */
.hero {
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--header-h) + 2rem) clamp(1rem, 4vw, 3rem) 3rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(30,95,217,0.14) 0%, transparent 65%),
              radial-gradient(ellipse at 80% 30%, rgba(30,95,217,0.08) 0%, transparent 50%);
  pointer-events: none;
}

.hero__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  max-width: 1200px;
  width: 100%;
  position: relative;
  z-index: 1;
}

.hero__content {
  flex: 1;
  opacity: 0;
  transform: translateY(30px);
  animation: heroFadeIn 0.8s ease-out 0.2s forwards;
}

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

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(30,95,217,0.15);
  border: 1px solid rgba(30,95,217,0.3);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent-light);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 1.25rem;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6.5vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: 2px;
  margin-bottom: 1.25rem;
}

.hero__title span {
  color: var(--accent);
}

.hero__subtitle {
  font-size: 1.05rem;
  color: var(--gray-light);
  max-width: 480px;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 2rem;
}

.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gray-light);
}

.hero__tag svg {
  width: 16px;
  height: 16px;
  fill: var(--accent);
  flex-shrink: 0;
}

.hero__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 50px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  min-height: 48px;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(30,95,217,0.4);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid rgba(255,255,255,0.15);
  border-radius: 50px;
  transition: border-color 0.2s ease, background 0.2s ease;
  min-height: 48px;
}

.btn-outline:hover {
  border-color: var(--accent);
  background: rgba(30,95,217,0.08);
}

.hero__visual {
  flex: 0 0 auto;
  position: relative;
  opacity: 0;
  transform: scale(0.9);
  animation: heroVisualIn 0.8s ease-out 0.4s forwards;
}

@keyframes heroVisualIn {
  to { opacity: 1; transform: scale(1); }
}

/* Círculo da Logo no Hero (Redondo e sem fundo quadrado) */
.hero__logo-circle {
  width: 290px;
  height: 290px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(30,95,217,0.25) 0%, transparent 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero__logo-circle img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  clip-path: circle(50%);
  object-fit: cover;
  filter: drop-shadow(0 0 35px rgba(30,95,217,0.6));
  border: 2px solid rgba(30,95,217,0.5);
}

.hero__logo-circle::after {
  content: '';
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 1px dashed rgba(30,95,217,0.35);
  animation: spinSlow 30s linear infinite;
}

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

/* ---------- SECTION TITLES ---------- */
.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-header__label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.section-header__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: 1.5px;
}

.section-header__subtitle {
  font-size: 0.875rem;
  color: var(--gray);
  margin-top: 0.25rem;
}

/* ---------- PRODUCT GRID & CARDS ---------- */
.products {
  padding: 4rem clamp(1rem, 4vw, 3rem);
  max-width: 1280px;
  margin: 0 auto;
}

.filter-bar {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.filter-btn {
  padding: 8px 20px;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 50px;
  color: var(--gray);
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.2s ease;
  min-height: 40px;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 400px));
  justify-content: center;
  gap: 1.5rem;
}

/* Product Card */
.product-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.45);
  border-color: rgba(30,95,217,0.4);
}

.product-card__img-wrap {
  position: relative;
  aspect-ratio: 9/16;
  overflow: hidden;
  background: #111218;
}

.product-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.product-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
}

.product-card__badge--available {
  background: rgba(34, 197, 94, 0.3);
  color: #4ade80;
  border: 1px solid rgba(34,197,94,0.4);
}

.product-card__badge--sold {
  background: rgba(239, 68, 68, 0.3);
  color: #f87171;
  border: 1px solid rgba(239,68,68,0.4);
}

.product-card__brand {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 4px 12px;
  background: rgba(14,15,18,0.8);
  backdrop-filter: blur(8px);
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
  z-index: 2;
}

.product-card__img-count {
  position: absolute;
  bottom: 12px;
  right: 12px;
  padding: 4px 10px;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(6px);
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--white);
  z-index: 2;
}

.product-card__body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-card__category {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent);
  margin-bottom: 4px;
}

.product-card__name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.8px;
  margin-bottom: 10px;
  line-height: 1.15;
}

.product-card__prices {
  margin-bottom: 0.75rem;
  padding: 8px 12px;
  background: rgba(255,255,255,0.03);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.05);
}

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

.price-pix-val {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: #4ade80;
  letter-spacing: 0.5px;
}

.price-pix-tag {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  background: rgba(34, 197, 94, 0.2);
  color: #4ade80;
  padding: 2px 6px;
  border-radius: 4px;
}

.price-credit-row {
  font-size: 0.78rem;
  color: var(--gray-light);
  margin-top: 2px;
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}

.no-interest {
  color: #38bdf8;
  font-weight: 600;
  font-size: 0.72rem;
}

.no-interest-badge {
  display: inline-block;
  background: rgba(56, 189, 248, 0.15);
  color: #38bdf8;
  border: 1px solid rgba(56, 189, 248, 0.3);
  padding: 2px 8px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  margin-left: 4px;
}

.product-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  margin-top: auto;
}

.product-card__size {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-light);
  background: rgba(255,255,255,0.06);
  padding: 4px 10px;
  border-radius: 6px;
}

.product-card__quick-view-btn {
  width: 100%;
  padding: 12px;
  background: var(--accent);
  color: var(--white);
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
  text-align: center;
  min-height: 44px;
}

.product-card:hover .product-card__quick-view-btn {
  background: var(--accent-light);
  box-shadow: 0 4px 16px rgba(30,95,217,0.3);
}


/* ---------- MODAL DE DETALHES DO PRODUTO ---------- */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  padding: 1rem;
}

.modal-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.product-modal {
  background: var(--bg-modal);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7);
  transform: scale(0.94) translateY(20px);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-backdrop.active .product-modal {
  transform: scale(1) translateY(0);
}

.modal-drag-handle {
  display: none;
}

.modal-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: background 0.2s ease, transform 0.2s ease;
  z-index: 10;
}

.modal-close-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: rotate(90deg);
}

.modal-close-btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.modal-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  padding: 2rem;
}

/* Modal Gallery / Carousel */
.modal-gallery {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.carousel-container {
  position: relative;
  aspect-ratio: 9/16;
  border-radius: var(--radius);
  overflow: hidden;
  background: #101116;
  touch-action: pan-y;
  max-height: 520px;
}

.carousel-track {
  display: flex;
  height: 100%;
  width: 100%;
  transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

.carousel-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  user-select: none;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(14, 15, 18, 0.75);
  backdrop-filter: blur(6px);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
  z-index: 5;
}

.carousel-arrow:hover {
  background: var(--accent);
  transform: translateY(-50%) scale(1.08);
}

.carousel-arrow svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.carousel-arrow.prev { left: 10px; }
.carousel-arrow.next { right: 10px; }

.carousel-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 5;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  transition: all 0.2s ease;
}

.carousel-dot.active {
  background: var(--accent);
  width: 22px;
  border-radius: 10px;
}

.carousel-thumbs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.carousel-thumb {
  width: 60px;
  height: 80px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  opacity: 0.6;
  transition: all 0.2s ease;
  flex-shrink: 0;
  background: #111218;
}

.carousel-thumb.active,
.carousel-thumb:hover {
  opacity: 1;
  border-color: var(--accent);
}

.carousel-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Modal Info */
.modal-info {
  display: flex;
  flex-direction: column;
}

.modal-header-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}

.modal-brand {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
}

.modal-badge {
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
}

.modal-badge--available {
  background: rgba(34, 197, 94, 0.2);
  color: #4ade80;
  border: 1px solid rgba(34,197,94,0.3);
}

.modal-badge--sold {
  background: rgba(239, 68, 68, 0.2);
  color: #f87171;
  border: 1px solid rgba(239,68,68,0.3);
}

.modal-title {
  font-family: var(--font-display);
  font-size: 2.1rem;
  letter-spacing: 1px;
  line-height: 1.1;
  margin-bottom: 4px;
}

.modal-category {
  font-size: 0.85rem;
  color: var(--gray);
  margin-bottom: 1.25rem;
}

.modal-price-box {
  padding: 1rem 1.25rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-sm);
  margin-bottom: 1.5rem;
}

.modal-price-dual {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

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

.modal-price-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: #4ade80;
  letter-spacing: 0.5px;
}

.modal-price-badge-pix {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  background: rgba(34, 197, 94, 0.2);
  color: #4ade80;
  padding: 2px 8px;
  border-radius: 4px;
}

.modal-price-credit {
  font-size: 0.85rem;
  color: var(--gray-light);
}

.modal-size-tag {
  display: inline-block;
  margin-top: 8px;
  padding: 4px 12px;
  background: rgba(30,95,217,0.15);
  border: 1px solid rgba(30,95,217,0.3);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent-light);
}

.modal-section {
  margin-bottom: 1.5rem;
}

.modal-section-title {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray-light);
  margin-bottom: 8px;
}

.modal-description {
  font-size: 0.9rem;
  color: var(--gray-light);
  line-height: 1.65;
  margin-bottom: 12px;
}

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

.modal-specs li {
  font-size: 0.84rem;
  color: var(--gray-light);
}

.modal-delivery-info {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 1rem 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 1rem;
}

.delivery-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--gray);
}

.delivery-item svg {
  width: 16px;
  height: 16px;
  fill: var(--accent);
  flex-shrink: 0;
}

.modal-cta-wrapper {
  margin-top: 0.5rem;
}

.modal-buy-btn {
  width: 100%;
  padding: 14px;
  font-size: 1rem;
  border-radius: var(--radius-sm);
  justify-content: center;
}

.modal-buy-btn--disabled {
  background: #2a2b33 !important;
  color: var(--gray) !important;
  cursor: not-allowed;
  box-shadow: none !important;
  pointer-events: none;
}


/* ---------- HOW IT WORKS ---------- */
.how-it-works {
  padding: 4rem clamp(1rem, 4vw, 3rem);
  max-width: 1100px;
  margin: 0 auto;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.step-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 1.75rem 1.25rem;
  text-align: center;
}

.step-card__number {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.85rem;
  background: rgba(30,95,217,0.15);
  border: 1px solid rgba(30,95,217,0.3);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--accent);
}

.step-card__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 1px;
  margin-bottom: 0.4rem;
}

.step-card__desc {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.6;
}

/* Info boxes */
.info-boxes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}

.info-box {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 1.35rem;
}

.info-box__icon {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(30,95,217,0.12);
  border-radius: var(--radius-sm);
  margin-bottom: 0.85rem;
}

.info-box__icon svg {
  width: 18px;
  height: 18px;
  fill: var(--accent);
}

.info-box__title {
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 0.3rem;
}

.info-box__text {
  font-size: 0.82rem;
  color: var(--gray);
  line-height: 1.6;
}

/* ---------- FOOTER ---------- */
.footer {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 2.5rem clamp(1rem, 4vw, 3rem);
}

.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer__brand img {
  height: 36px;
  width: 36px;
  border-radius: 50%;
  clip-path: circle(50%);
  object-fit: cover;
  border: 1px solid rgba(30, 95, 217, 0.4);
}

.footer__brand-text {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 2px;
}

.footer__brand-text span {
  color: var(--accent);
}

.footer__links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.footer__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--gray);
  transition: color 0.2s ease;
}

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

.footer__link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer__copy {
  font-size: 0.75rem;
  color: var(--gray);
  text-align: center;
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.04);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- SCROLLBAR ---------- */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #2a2b33; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #3a3b44; }


/* ===================================
   📱 OTIMIZAÇÕES MOBILE-FIRST
   =================================== */

@media (max-width: 768px) {
  :root { --header-h: 62px; }

  /* Header compacto */
  .header__logo-text { font-size: 1.25rem; }
  .header__logo img { height: 36px; width: 36px; }
  .btn-whatsapp { padding: 8px 16px; font-size: 0.8rem; }

  /* Hero em celular */
  .hero {
    min-height: auto;
    padding-top: calc(var(--header-h) + 1.5rem);
    padding-bottom: 2.5rem;
  }

  .hero__inner {
    flex-direction: column-reverse;
    text-align: center;
    gap: 2rem;
  }

  .hero__logo-circle {
    width: 210px;
    height: 210px;
  }

  .hero__logo-circle img {
    width: 100%;
    height: 100%;
  }

  .hero__subtitle {
    margin-left: auto;
    margin-right: auto;
    font-size: 0.95rem;
  }

  .hero__tags {
    justify-content: center;
  }

  .hero__cta {
    flex-direction: column;
    width: 100%;
  }

  .btn-primary, .btn-outline {
    width: 100%;
    justify-content: center;
  }

  /* Grid centralizado no celular */
  .product-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin: 0 auto;
  }

  .product-card__body {
    padding: 1rem;
  }

  .product-card__name {
    font-size: 1.3rem;
    margin-bottom: 6px;
  }

  .price-pix-val {
    font-size: 1.5rem;
  }

  /* Modal como "Bottom Sheet" nativo de celular */
  .modal-backdrop {
    padding: 0;
    align-items: flex-end;
  }

  .product-modal {
    border-radius: 24px 24px 0 0;
    max-height: 90vh;
    border-bottom: none;
    transform: translateY(100%);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .modal-backdrop.active .product-modal {
    transform: translateY(0);
  }

  .modal-drag-handle {
    display: block;
    width: 40px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    margin: 10px auto 4px;
  }

  .modal-close-btn {
    top: 10px;
    right: 12px;
    width: 32px;
    height: 32px;
  }

  .modal-content {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    padding: 1rem 1.25rem 2rem;
  }

  .carousel-container {
    aspect-ratio: 9/16;
    max-height: 440px;
  }

  .modal-title {
    font-size: 1.6rem;
  }

  .modal-price-num {
    font-size: 1.8rem;
  }

  /* Rodapé fixo de compra no celular */
  .modal-cta-wrapper {
    position: sticky;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-modal);
    padding-top: 10px;
    padding-bottom: max(10px, env(safe-area-inset-bottom));
    border-top: 1px solid rgba(255,255,255,0.08);
    z-index: 10;
  }
}
