/* ============================================================
   SUNSETGLASS — TROPICAL SUMMER DESIGN SYSTEM
   ============================================================ */

/* — Fonts — */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:ital,wght@0,700;1,400&display=swap');

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

/* ─── DESIGN TOKENS ─── */
:root {
  /* Tropical Palette */
  --coral: #FF6B52;
  --coral-light: #FF8A76;
  --coral-dark: #E5533B;
  --tangerine: #FF9F43;
  --golden: #FFCB6B;
  --ocean: #00B4D8;
  --ocean-light: #48CAE4;
  --teal: #0077B6;
  --sun-yellow: #FFD93D;

  /* Surfaces */
  --bg-primary: #FFFBF5;
  --bg-secondary: #FFF3E4;
  --bg-card: #FFFFFF;
  --bg-glass: rgba(255, 255, 255, 0.75);

  /* Borders */
  --border-soft: rgba(255, 107, 82, 0.15);
  --border-card: rgba(27, 40, 56, 0.08);

  /* Text — high contrast on cream bg */
  --text-primary: #1B2838;
  --text-secondary: #3D5068;
  --text-muted: #7A8EA2;
  --text-on-accent: #FFFFFF;

  /* Accent = coral */
  --accent: var(--coral);
  --accent-light: var(--coral-light);
  --accent-glow: rgba(255, 107, 82, 0.25);

  /* Radii */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --radius-pill: 99px;

  /* Motion */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --transition: 0.3s var(--ease);
  --transition-slow: 0.6s var(--ease);

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(27, 40, 56, 0.06);
  --shadow-md: 0 8px 30px rgba(27, 40, 56, 0.08);
  --shadow-lg: 0 20px 60px rgba(27, 40, 56, 0.12);
  --shadow-glow: 0 0 40px rgba(255, 107, 82, 0.2);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ─ Scrollbar ─ */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--coral), var(--tangerine));
  border-radius: var(--radius-pill);
}

/* ─ Selection ─ */
::selection {
  background: var(--coral);
  color: #fff;
}

/* ─ Utilities ─ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── SECTION TYPOGRAPHY ─── */
.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 12px;
  display: inline-block;
}

.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-primary);
}

.section-title span {
  background: linear-gradient(135deg, var(--coral), var(--tangerine));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-sub {
  color: var(--text-secondary);
  max-width: 600px;
  margin: 12px auto 0;
  text-align: center;
  font-size: 15px;
  line-height: 1.7;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  letter-spacing: 0.5px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--coral), var(--coral-dark));
  color: #FFF;
  box-shadow: 0 4px 16px rgba(255, 107, 82, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--coral-light), var(--coral));
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255, 107, 82, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid var(--border-soft);
}

.btn-outline:hover {
  border-color: var(--coral);
  color: var(--coral);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.btn-ghost {
  background: var(--bg-glass);
  color: var(--text-secondary);
  border: 1px solid var(--border-card);
  backdrop-filter: blur(10px);
  padding: 10px 18px;
  font-size: 13px;
}

.btn-ghost:hover {
  color: var(--coral);
  border-color: var(--coral);
  background: rgba(255, 107, 82, 0.06);
}

/* ═══════════════════════════════════════════════
   HEADER / NAV
═══════════════════════════════════════════════ */
#main-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 24px;
  transition: var(--transition);
  background: #000000;
}

#main-header.scrolled {
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--coral), var(--tangerine));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 14px;
  color: #fff;
  letter-spacing: -1px;
}

.nav-logo-text {
  font-weight: 800;
  font-size: 18px;
  color: var(--text-primary);
  letter-spacing: -0.5px;
}

.nav-logo-text span {
  background: linear-gradient(135deg, var(--coral), var(--tangerine));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.nav-links a:hover {
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.06);
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown>a::after {
  content: "▾";
  margin-left: 4px;
  font-size: 10px;
  opacity: 0.5;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  background: #111111;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.nav-dropdown:hover .dropdown-menu {
  display: block;
  animation: fadeDown 0.2s ease;
}

.dropdown-menu a {
  display: block;
  padding: 10px 14px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 13px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.dropdown-menu a:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #FFFFFF;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-whatsapp {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(37, 211, 102, 0.15);
  border: 1px solid rgba(37, 211, 102, 0.3);
  color: #25d366;
  text-decoration: none;
  padding: 9px 16px;
  border-radius: var(--radius-md);
  font-size: 13px;
  font-weight: 600;
  transition: var(--transition);
}

.nav-whatsapp:hover {
  background: rgba(37, 211, 102, 0.25);
  transform: translateY(-1px);
  color: #44eb82;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.2);
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: none;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #FFFFFF;
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile nav overlay */
.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.98);
  backdrop-filter: blur(24px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.nav-mobile.open {
  display: flex;
}

.nav-mobile a {
  color: #FFFFFF;
  text-decoration: none;
  font-size: 22px;
  font-weight: 700;
  transition: var(--transition);
}

.nav-mobile a:hover {
  color: var(--coral);
}

.nav-mobile-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 28px;
  cursor: pointer;
}

/* ═══════════════════════════════════════════════
   HERO / CAROUSEL
═══════════════════════════════════════════════ */
#hero {
  position: relative;
  /* Desktop: altura full vh menos o nav */
  height: calc(100vh - 80px);
  min-height: 500px;
  max-height: 900px;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  margin-top: 0;
  background: var(--bg-primary);
}

.hero-slides {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease;
  /* NUNCA escuro: usa fundo claro neutro */
  background-color: #f5f0ea;
}

.hero-slide.active {
  opacity: 1;
  animation: heroSlideIn 0.7s ease both;
}

/* Real image for hero */
.hero-slide-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  /* cover garante sem bordas em qualquer tamanho */
  object-fit: cover;
  object-position: center top;
  z-index: 0;
  display: block;
}

/* Subtle gradient overlay for readability */
.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(255, 251, 245, 0.05) 0%,
      rgba(255, 251, 245, 0.08) 60%,
      rgba(255, 251, 245, 0.25) 100%);
  z-index: 1;
  pointer-events: none;
}

/* Decorative elements — hidden since we use images */
.hero-slide-orb,
.hero-slide-glasses {
  display: none !important;
}

/* Background-based slide (legacy) */
.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  min-height: 100%;
  padding-bottom: 60px;
  text-align: center;
}

/* Hero text — hidden since text is in the banner art */
#hero .hero-title-brand,
#hero .hero-subtitle,
#hero .hero-desc,
#hero .hero-badge,
#hero .hero-actions {
  display: none !important;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-glass);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-pill);
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 600;
  color: var(--coral);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
}

.hero-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--coral);
  animation: pulse 1.5s infinite;
}

.hero-title-brand {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 6vw, 80px);
  font-weight: 700;
  line-height: 1.05;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.hero-title-brand.accent-color {
  -webkit-text-stroke: 2px var(--coral);
  color: transparent;
}

.hero-subtitle {
  font-size: clamp(14px, 1.6vw, 20px);
  font-weight: 300;
  color: var(--text-secondary);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hero-desc {
  font-size: clamp(13px, 1.2vw, 16px);
  color: var(--text-secondary);
  max-width: 440px;
  line-height: 1.7;
  margin-bottom: 36px;
}

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

/* Hero nav dots */
.hero-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
  padding: 6px 12px;
  background: rgba(255, 251, 245, 0.6);
  border-radius: var(--radius-pill);
  backdrop-filter: blur(8px);
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(27, 40, 56, 0.3);
  cursor: pointer;
  transition: var(--transition);
  border: none;
  padding: 0;
}

.hero-dot.active {
  background: var(--coral);
  width: 22px;
  border-radius: 4px;
  box-shadow: 0 0 8px rgba(255, 107, 82, 0.5);
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 32px;
  right: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  z-index: 10;
}

.hero-scroll-line {
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, var(--coral), transparent);
  animation: scrollLine 1.8s ease-in-out infinite;
  border-radius: 2px;
}

/* ═══════════════════════════════════════════════
   TICKER / MARQUEE
═══════════════════════════════════════════════ */
#ticker {
  background: linear-gradient(135deg, var(--coral), var(--tangerine));
  padding: 14px 0;
  overflow: hidden;
}

.ticker-track {
  display: flex;
  gap: 0;
  animation: ticker 25s linear infinite;
  white-space: nowrap;
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 0 40px;
  font-size: 13px;
  font-weight: 700;
  color: #FFF;
  letter-spacing: 3px;
  text-transform: uppercase;
  flex-shrink: 0;
}

.ticker-dot {
  width: 5px;
  height: 5px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
}

/* ═══════════════════════════════════════════════
   MARCAS (BRANDS)
═══════════════════════════════════════════════ */
#marcas {
  padding: 100px 0 120px;
}

.marcas-header {
  text-align: center;
  margin-bottom: 72px;
}

.marcas-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.marca-card {
  background: #000000;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  padding: 48px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  text-decoration: none;
  display: block;
  box-shadow: var(--shadow-sm);
}

.marca-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top right, var(--brand-glow) 0%, transparent 70%);
  opacity: 0;
  transition: var(--transition);
}

.marca-card:hover::before {
  opacity: 1;
}

.marca-card:hover {
  border-color: var(--brand-color);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.marca-numero {
  display: none !important;
}

.marca-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 107, 82, 0.06);
  border: 1.5px solid var(--brand-color);
  border-radius: var(--radius-pill);
  padding: 5px 14px;
  font-size: 11px;
  font-weight: 600;
  color: var(--brand-color);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.marca-nome {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 3.5vw, 44px);
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 6px;
  line-height: 1.1;
}

.marca-slogan {
  font-size: 13px;
  font-weight: 500;
  color: var(--brand-color);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.marca-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.75;
  margin-bottom: 32px;
}

.marca-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.marca-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  letter-spacing: 0.5px;
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
}

.marca-link:hover {
  border-color: var(--brand-color);
  color: var(--brand-color);
  background: rgba(255, 107, 82, 0.04);
  transform: translateY(-1px);
}

.marca-link.primary {
  background: var(--brand-color);
  color: #FFF;
  border-color: var(--brand-color);
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
}

.marca-link.primary:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Logo in brand cards */
.marca-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 24px 0;
}

.marca-logo img {
  max-width: 280px;
  height: auto;
  display: block;
}

/* ═══════════════════════════════════════════════
   DIFERENCIAIS (WHY US)
═══════════════════════════════════════════════ */
#diferenciais {
  padding: 100px 0;
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

#diferenciais::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--coral), var(--tangerine), transparent);
}

#diferenciais::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--tangerine), var(--coral), transparent);
}

.diferenciais-header {
  margin-bottom: 64px;
  text-align: center;
}

.diferenciais-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.diferencial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.diferencial-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--coral), var(--tangerine));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.diferencial-card:hover::after {
  transform: scaleX(1);
}

.diferencial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-soft);
}

.diferencial-icone {
  font-size: 36px;
  margin-bottom: 18px;
  display: block;
  filter: saturate(1.2);
}

.diferencial-numero {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--coral);
  margin-bottom: 10px;
}

.diferencial-titulo {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
  line-height: 1.3;
}

.diferencial-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ─── Founder Card ─── */
.founder-card {
  margin-top: 40px;
  display: inline-flex;
  align-items: center;
  gap: 24px;
  padding: 24px 32px;
  border-radius: var(--radius-xl);
  background: var(--bg-card);
  border: 1.5px solid var(--border-soft);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.founder-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.founder-card img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--coral);
  box-shadow: 0 0 20px rgba(255, 107, 82, 0.2);
}

.founder-info strong {
  display: block;
  color: var(--text-primary);
  font-size: 20px;
  font-weight: 700;
}

.founder-role {
  display: block;
  color: var(--text-muted);
  font-size: 13px;
  margin-top: 4px;
  font-weight: 500;
}

.founder-quote {
  margin-top: 10px;
  font-size: 14px;
  font-style: italic;
  color: var(--coral);
  line-height: 1.5;
  max-width: 380px;
}

/* ═══════════════════════════════════════════════
   LANÇAMENTOS (NEW RELEASES)
═══════════════════════════════════════════════ */
#lancamentos {
  padding: 100px 0 120px;
}

.lancamentos-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
  gap: 24px;
  flex-wrap: wrap;
}

.lancamentos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.produto-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  cursor: default;
  box-shadow: var(--shadow-sm);
}

.produto-card:hover {
  border-color: var(--border-soft);
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.produto-imagem {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: var(--bg-secondary);
}

.produto-imagem-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, var(--brand-glow) 0%, transparent 70%);
  opacity: 0.4;
}

.produto-svg-wrap {
  position: relative;
  z-index: 1;
  width: 75%;
  height: 75%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.produto-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: linear-gradient(135deg, var(--coral), var(--tangerine));
  color: #FFF;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  z-index: 2;
}

.produto-badge:empty {
  display: none;
}

.produto-marca-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--bg-glass);
  border: 1px solid var(--border-card);
  color: var(--text-secondary);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  z-index: 2;
  backdrop-filter: blur(8px);
}

.produto-info {
  padding: 16px 18px 20px;
  border-top: 1px solid var(--border-card);
}

.produto-codigo {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.produto-marca-nome {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
}

/* ═══════════════════════════════════════════════
   REDES SOCIAIS (SOCIAL MEDIA)
═══════════════════════════════════════════════ */
#redes {
  padding: 100px 0;
  background: var(--bg-secondary);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.redes-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse,
      rgba(255, 107, 82, 0.12) 0%,
      rgba(255, 159, 67, 0.06) 40%,
      transparent 70%);
  pointer-events: none;
}

.redes-header {
  position: relative;
  z-index: 1;
  margin-bottom: 48px;
}

.redes-cards {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.rede-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: 40px 56px;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.rede-card:hover {
  border-color: var(--coral);
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow);
}

.rede-icone {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.rede-nome {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-primary);
}

.rede-handle {
  font-size: 13px;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════════════
   CTA WHATSAPP
═══════════════════════════════════════════════ */
#contato-cta {
  padding: 80px 0;
  text-align: center;
}

.cta-box {
  background: linear-gradient(135deg, #E8FFF0 0%, #F0FFF4 50%, #E8FFF0 100%);
  border: 2px solid rgba(37, 211, 102, 0.2);
  border-radius: var(--radius-xl);
  padding: 64px 48px;
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(37, 211, 102, 0.08);
}

.cta-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(37, 211, 102, 0.06) 0%, transparent 70%);
}

.cta-box-content {
  position: relative;
  z-index: 1;
}

.cta-box h2 {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.cta-box p {
  color: var(--text-secondary);
  font-size: 15px;
  margin-bottom: 32px;
  line-height: 1.7;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: #FFF;
  font-weight: 700;
  font-size: 16px;
  padding: 16px 36px;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background: #20bf5a;
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.4);
}

/* ═══════════════════════════════════════════════
   LOCALIZAÇÃO
═══════════════════════════════════════════════ */
.localizacao {
  padding: 80px 0;
}

.localizacao-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
  align-items: center;
}

.localizacao-endereco {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.8;
  margin: 20px 0 28px;
}

.localizacao-botao {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: linear-gradient(135deg, var(--coral), var(--tangerine));
  color: #FFF;
  font-weight: 600;
  font-size: 14px;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(255, 107, 82, 0.25);
}

.localizacao-botao:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255, 107, 82, 0.35);
}

.localizacao-mapa {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-card);
}

.localizacao-mapa iframe {
  width: 100%;
  height: 380px;
  display: block;
}

/* ═══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
#footer {
  background: var(--text-primary);
  padding: 64px 0 32px;
  color: #FFF;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer-brand-desc {
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
  line-height: 1.7;
  margin: 16px 0 24px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-social {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  text-decoration: none;
  transition: var(--transition);
  color: rgba(255, 255, 255, 0.7);
}

.footer-social:hover {
  border-color: var(--coral);
  color: var(--coral);
  background: rgba(255, 107, 82, 0.12);
}

.footer-col-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 14px;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--coral-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-copy {
  color: rgba(255, 255, 255, 0.4);
  font-size: 13px;
}

.footer-copy a {
  color: var(--coral-light);
  text-decoration: none;
}

/* ═══════════════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════════════ */
@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

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

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}

@keyframes scrollLine {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }

  50% {
    transform: scaleY(1);
    transform-origin: top;
  }

  51% {
    transform: scaleY(1);
    transform-origin: bottom;
  }

  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

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

@keyframes heroSlideIn {
  from {
    opacity: 0;
    transform: scale(1.02);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* ─ Scroll Reveal ─ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-d1 {
  transition-delay: 0.1s;
}

.reveal-d2 {
  transition-delay: 0.2s;
}

.reveal-d3 {
  transition-delay: 0.3s;
}

.reveal-d4 {
  transition-delay: 0.4s;
}

/* ═══════════════════════════════════════════════
   RESPONSIVE — DESKTOP → TABLET → MOBILE
═══════════════════════════════════════════════ */

/* ─── Header force-fixes ─── */
#main-header .nav-inner {
  min-height: 80px;
}

#main-header .nav-logo {
  line-height: 0;
}

#main-header .nav-logo img {
  display: block;
  height: 80px;
  width: auto;
}

/* ─── Tablet (≤1024px) ─── */
@media (max-width: 1024px) {
  .diferenciais-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .lancamentos-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .localizacao-grid {
    grid-template-columns: 1fr;
  }
}

/* ─── Mobile (≤768px) ─── */
@media (max-width: 768px) {
  body {
    padding-top: 68px !important;
  }

  /* Nav */
  .nav-links,
  .nav-cta {
    display: none !important;
  }

  .nav-toggle {
    display: flex !important;
  }

  #main-header .nav-inner {
    min-height: 64px;
    padding: 0 16px;
  }

  #main-header .nav-logo img {
    height: 48px !important;
  }

  /* Hero — proporcional à largura no mobile */
  #hero {
    /* aspect-ratio 4:3 garante que imagens landscape encaixem sem borda */
    height: auto;
    aspect-ratio: 4 / 3;
    min-height: 280px;
    max-height: 520px;
    /* reseta o height do desktop */
  }

  .hero-slides,
  .hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .hero-slide-img {
    /* Sempre cover — sem bordas, sem fundo escuro */
    object-fit: cover;
    object-position: center center;
  }

  .hero-slide-overlay {
    /* Mobile: gradiente de baixo para facilitar leitura dos dots */
    background: linear-gradient(180deg,
        transparent 50%,
        rgba(255, 251, 245, 0.4) 85%,
        rgba(255, 251, 245, 0.7) 100%) !important;
  }

  .hero-dots {
    bottom: 12px;
  }

  .hero-scroll {
    display: none;
  }

  /* Sections */
  .marcas-grid {
    grid-template-columns: 1fr;
  }

  .lancamentos-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .diferenciais-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

  .marca-card {
    padding: 32px 24px;
  }

  .redes-cards {
    flex-direction: column;
    align-items: center;
  }

  .cta-box {
    padding: 40px 24px;
  }

  #marcas,
  #lancamentos {
    padding: 72px 0;
  }

  #diferenciais {
    padding: 64px 0;
  }

  .lancamentos-header {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .founder-card img {
    width: 80px;
    height: 80px;
  }

  .founder-info strong {
    font-size: 17px;
  }

  .founder-quote {
    max-width: 100%;
  }

  .marca-logo img {
    max-width: 200px;
  }

  .localizacao-mapa iframe {
    height: 260px;
  }
}

/* ─── Small Mobile (≤480px) ─── */
@media (max-width: 480px) {
  .lancamentos-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .diferenciais-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
  }

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

  /* Telas muito pequenas: ratio um pouco mais alto para aproveitar espaço */
  #hero {
    aspect-ratio: 3 / 2;
    min-height: 220px;
    max-height: 380px;
  }

  .rede-card {
    padding: 28px 36px;
  }

  .marca-card {
    padding: 28px 20px;
  }
}

/* ─── Desktop (≥769px) ─── */
@media (min-width: 769px) {
  .nav-links {
    display: flex !important;
  }

  .nav-toggle {
    display: none !important;
  }

  #main-header .nav-cta {
    display: flex !important;
  }
}