/* =============================================
   APEXX COMPANY — Folha de Estilos
   ============================================= */

/* --- Variáveis de cor --- */
:root {
  --vermelho: #8b1a2e;
  --preto: #111111;
  --branco: #ffffff;
  --cinza-claro: #f7f7f7;
  --cinza-borda: #e8e8e8;
  --cinza-texto: #555555;
  --cinza-muted: #999999;
  --gradient-hero: linear-gradient(135deg, rgba(139, 26, 46, 0.15) 0%, rgba(139, 26, 46, 0.08) 50%, rgba(17, 17, 17, 0.05) 100%);
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--branco);
  color: var(--preto);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* --- Tipografia --- */
h1, h2, h3, h4 { font-family: 'Syne', sans-serif; line-height: 1.15; }

/* --- Utilitários --- */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; align-items: center; }
.text-center { text-align: center; }
.bg-gray { background: var(--cinza-claro); }
.accent { color: var(--vermelho); }

/* =============================================
   ANIMAÇÕES DE ENTRADA
   ============================================= */
.fade-up, .reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible, .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.24s; }
.delay-3 { transition-delay: 0.36s; }
.delay-4 { transition-delay: 0.48s; }

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 40px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--cinza-borda);
  transition: box-shadow 0.3s;
}
.navbar.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.07); }
.nav-logo { height: 38px; width: auto; }
.nav-links { display: flex; gap: 36px; }
.nav-links a {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cinza-texto);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--vermelho); }
.nav-social { display: flex; gap: 16px; color: var(--cinza-texto); }
.nav-social a { transition: color 0.2s; }
.nav-social a:hover { color: var(--vermelho); }
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--preto);
  transition: all 0.3s;
}

/* =============================================
   HERO
   ============================================= */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 80px;
  background: var(--branco);
  position: relative;
  text-align: center;
  padding-left: 24px;
  padding-right: 24px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
  pointer-events: none;
  z-index: 0;
}
.hero-content {
  position: relative;
  z-index: 1;
}
.hero-logo { height: 130px; width: auto; margin: 0 auto 28px; }
.hero-tag {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--cinza-texto);
  margin-bottom: 16px;
}
.hero-title {
  font-size: clamp(42px, 7vw, 80px);
  font-weight: 800;
  color: var(--preto);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.hero-sub { font-size: 18px; color: var(--cinza-texto); margin-bottom: 40px; }
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
  border-radius: 4px;
}
.btn-dark { background: var(--preto); color: var(--branco); }
.btn-dark:hover { background: var(--vermelho); transform: translateY(-2px); }
.btn-large { padding: 18px 48px; font-size: 14px; }
.btn-outline { border: 1.5px solid var(--cinza-borda); color: var(--cinza-texto); background: none; }
.btn-outline:hover { border-color: var(--vermelho); color: var(--vermelho); }
.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--cinza-muted);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeIn 1s 1.2s forwards;
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, var(--cinza-borda));
}

/* =============================================
   STRIP ANIMADO
   ============================================= */
.strip {
  margin-top: 50px; /* (50px)*/
  background: var(--preto);
  padding: 30px 0;
  overflow: hidden;
  white-space: nowrap;
}
.strip-track {
  display: inline-block;
  animation: marquee 25s linear infinite;
}
.strip-track span {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}

/* =============================================
   SEÇÕES GENÉRICAS
   ============================================= */
.section { padding: 112px 0; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--vermelho);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  color: var(--preto);
  margin-bottom: 12px;
}
.section-sub { color: var(--cinza-muted); font-size: 16px; }
.section-text { font-size: 17px; color: var(--cinza-texto); line-height: 1.75; }

/* =============================================
   MANIFESTO
   ============================================= */
.manifesto .section-tag { display: block; margin-bottom: 12px; }
.manifesto .section-title { margin-bottom: 20px; }
.photo-frame { position: relative; }
.photo-frame::before {
  content: '';
  position: absolute;
  top: -16px; left: -16px;
  width: 100%; height: 100%;
  border: 1px solid var(--cinza-borda);
  z-index: 0;
}
.photo {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  position: relative;
  z-index: 1;
}

/* =============================================
   COLEÇÃO / CARDS
   ============================================= */
.cards-grid { align-items: start; margin-top: 0; }
.card { background: var(--branco); overflow: hidden; }
.card-img { overflow: hidden; aspect-ratio: 4/5; }
.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.card:hover .card-img img { transform: scale(1.05); }
.card-body {
  padding: 20px 24px;
  border: 1px solid var(--cinza-borda);
  border-top: none;
}
.card-body h3 { font-size: 18px; font-weight: 700; margin-bottom: 6px; }
.card-body p { font-size: 14px; color: var(--cinza-texto); }

/* =============================================
   OUTLET
   ============================================= */
.outlet {
  background: var(--vermelho);
  color: var(--branco);
  position: relative;
  overflow: hidden;
  padding: 96px 0;
}
.outlet-bg-logo {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.04;
  pointer-events: none;
}
.outlet-bg-logo img { width: 80%; filter: brightness(0) invert(1); }
.badge {
  display: inline-block;
  border: 1px solid rgba(255,255,255,0.4);
  padding: 4px 16px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.outlet-title {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
.outlet-text {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  max-width: 520px;
  margin: 0 auto 36px;
}
.outlet-banner {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255,255,255,0.3);
  padding: 12px 24px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* =============================================
   TIKTOK SHOP
   ============================================= */
.tiktok-shop {
  background: var(--cinza-claro);
  padding: 96px 0;
}
.tiktok-shop-icon {
  width: 60px;
  height: 60px;
  background: var(--preto);
  color: var(--branco);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  border-radius: 8px;
}

/* =============================================
   QR CODES
   ============================================= */
.qr-grid { align-items: start; }
.qr-card {
  background: var(--branco);
  border: 1px solid var(--cinza-borda);
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.qr-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
.qr-card img { border: 1px solid var(--cinza-borda); padding: 8px; width: 180px; height: 180px; display: block; margin: 0 auto; }
.qr-icon {
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
}
.qr-icon.ig { background: var(--vermelho); }
.qr-icon.wa { background: #25D366; }
.qr-icon.wa-large { width: 60px; height: 60px; display: flex; align-items: center; justify-content: center; margin-bottom: 10px; }
.qr-icon.tt { background: var(--preto); }
.qr-info { text-align: center; }
.qr-info strong { display: block; font-size: 17px; color: var(--preto); margin-bottom: 2px; }
.qr-info span { font-size: 13px; color: var(--cinza-muted); }
.qr-link {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--vermelho);
  transition: opacity 0.2s;
}
.qr-link:hover { opacity: 0.7; }

/* =============================================
   LOCALIZAÇÃO
   ============================================= */
.location-card {
  background: var(--cinza-claro);
  border: 1px solid var(--cinza-borda);
  padding: 32px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}
.location-icon {
  width: 40px; height: 40px;
  background: var(--vermelho);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  border-radius: 6px;
}
.location-card strong { display: block; font-size: 17px; margin-bottom: 4px; }
.location-card p { font-size: 14px; color: var(--cinza-texto); }
.location-card .muted { font-size: 13px; color: var(--cinza-muted); margin-top: 4px; }
.divider { height: 1px; background: var(--cinza-borda); margin-bottom: 24px; }
.social-links { display: flex; flex-direction: column; gap: 16px; }
.social-link {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--cinza-texto);
  transition: color 0.2s;
}
.social-link:hover { color: var(--vermelho); }
.map-wrapper { overflow: hidden; border: 1px solid var(--cinza-borda); }
.map-wrapper iframe { display: block; }

/* =============================================
   FOOTER
   ============================================= */
.footer {
  padding: 48px 0;
  border-top: 1px solid var(--cinza-borda);
  background: var(--branco);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-logo { height: 38px; width: auto; }
.footer p { font-size: 13px; color: var(--cinza-muted); }
.footer-social { display: flex; gap: 20px; color: var(--cinza-muted); }
.footer-social a { transition: color 0.2s; }
.footer-social a:hover { color: var(--vermelho); }

/* =============================================
   ANIMAÇÕES KEYFRAMES
   ============================================= */
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes fadeIn {
  to { opacity: 1; }
}

/* =============================================
   RESPONSIVO — TABLET (768px)
   ============================================= */
@media (max-width: 768px) {
  .navbar { padding: 14px 20px; }
  .nav-links, .nav-social { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: var(--branco);
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid var(--cinza-borda);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    z-index: 99;
  }
  .nav-links.open a { font-size: 14px; }
  .menu-toggle { display: flex; }

  .grid-2, .grid-3 { grid-template-columns: 1fr; gap: 32px; }
  .photo-frame { order: -1; }
  .photo-frame::before { display: none; }

  .section { padding: 72px 0; }
  .hero-logo { height: 90px; }
  .hero-sub { font-size: 16px; }
  .hero-actions { gap: 12px; }
  .btn { padding: 12px 24px; font-size: 11px; }
  .btn-large { padding: 14px 32px; font-size: 12px; }

  .qr-card { padding: 32px 24px; }
  .qr-card img { width: 150px; height: 150px; }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .location-grid .map-wrapper { height: 280px; }
  .location-grid .map-wrapper iframe { height: 280px; }

  .tiktok-shop-icon { width: 50px; height: 50px; }
}

/* =============================================
   RESPONSIVO — MOBILE (480px)
   ============================================= */
@media (max-width: 480px) {
  .navbar { padding: 12px 16px; }
  .nav-logo { height: 32px; }

  .container { padding: 0 16px; }

  .hero {
    padding-top: 70px;
    padding-left: 16px;
    padding-right: 16px;
  }
  .hero-logo { height: 80px; margin-bottom: 20px; }
  .hero-tag { font-size: 11px; margin-bottom: 12px; }
  .hero-title { font-size: clamp(32px, 6vw, 56px); margin-bottom: 16px; }
  .hero-sub { font-size: 14px; margin-bottom: 32px; line-height: 1.6; }
  .hero-actions { flex-direction: column; gap: 12px; }
  .btn { width: 100%; justify-content: center; padding: 12px 20px; font-size: 10px; }
  .btn-large { width: 100%; }

  .strip-track span { font-size: 10px; letter-spacing: 0.2em; }

  .section { padding: 56px 0; }
  .section-header { margin-bottom: 40px; }
  .section-title { font-size: clamp(24px, 5vw, 36px); margin-bottom: 8px; }
  .section-tag { font-size: 10px; margin-bottom: 8px; }
  .section-sub { font-size: 14px; }
  .section-text { font-size: 15px; }

  .grid-2, .grid-3 { gap: 24px; }

  .card-body { padding: 16px 20px; }
  .card-body h3 { font-size: 16px; }
  .card-body p { font-size: 13px; }

  .outlet { padding: 64px 0; }
  .outlet-title { font-size: clamp(28px, 5vw, 48px); margin-bottom: 16px; }
  .outlet-text { font-size: 15px; margin-bottom: 24px; }
  .badge { font-size: 9px; padding: 3px 12px; }

  .tiktok-shop { padding: 64px 0; }
  .tiktok-shop-icon { width: 45px; height: 45px; }

  .qr-card { padding: 24px 16px; gap: 16px; }
  .qr-card img { width: 120px; height: 120px; }
  .qr-info strong { font-size: 15px; }
  .qr-info span { font-size: 12px; }
  .qr-link { font-size: 10px; }

  .location-card { padding: 24px; margin-bottom: 20px; }
  .location-icon { width: 36px; height: 36px; }
  .location-card strong { font-size: 15px; }
  .location-card p { font-size: 13px; }
  .social-link { font-size: 13px; gap: 10px; }

  .location-grid .map-wrapper { height: 240px; }
  .location-grid .map-wrapper iframe { height: 240px; }

  .footer { padding: 36px 0; }
  .footer-logo { height: 32px; }
  .footer p { font-size: 12px; }
  .footer-social { gap: 16px; }
  .footer-social a svg { width: 16px; height: 16px; }

  .scroll-hint { display: none; }
}

/* =============================================
   RESPONSIVO — MOBILE PEQUENO (360px)
   ============================================= */
@media (max-width: 360px) {
  .hero-logo { height: 70px; }
  .hero-title { font-size: clamp(28px, 5vw, 48px); }
  .hero-sub { font-size: 13px; }

  .section-title { font-size: clamp(22px, 5vw, 32px); }

  .btn { padding: 10px 16px; font-size: 9px; }

  .qr-card img { width: 100px; height: 100px; }
  .qr-info strong { font-size: 14px; }

  .outlet-title { font-size: clamp(24px, 5vw, 40px); }
}
