/* ============================================================
   MARCA FORTE — FERRO PARA MARCAR GADO
   Site Premium Agronegócio
   ============================================================ */

/* === CSS VARIABLES === */
:root {
  --gold: #c9a227;
  --gold-light: #e0b84a;
  --gold-dark: #a07d10;
  --gold-pale: #f5e6b8;
  --black: #0d0d0d;
  --dark: #111111;
  --dark-2: #1a1a1a;
  --dark-3: #222222;
  --dark-4: #2a2a2a;
  --graphite: #333333;
  --gray: #555555;
  --gray-light: #888888;
  --white: #ffffff;
  --white-dim: rgba(255, 255, 255, 0.85);
  --white-faint: rgba(255, 255, 255, 0.08);
  --green-wa: #25d366;
  --green-wa-dark: #1da851;
  --insta-grad: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  --border-gold: rgba(201, 162, 39, 0.25);
  --border-dark: rgba(255, 255, 255, 0.07);
  --shadow-gold: 0 4px 24px rgba(201, 162, 39, 0.2);
  --shadow-dark: 0 8px 40px rgba(0, 0, 0, 0.6);
  --radius: 6px;
  --radius-lg: 12px;
  --transition: 0.3s ease;
  --font-display: 'Cinzel', 'Georgia', serif;
  --font-body: 'Crimson Pro', 'Georgia', serif;
  --font-impact: 'Bebas Neue', 'Impact', sans-serif;
  --max-width: 1200px;
  --header-h: 72px;
  --header-top-h: 36px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--dark);
  color: var(--white-dim);
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
ul { list-style: none; }
address { font-style: normal; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* === CONTAINER === */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* === SECTION LAYOUT === */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 6px 16px;
  border: 1px solid var(--border-gold);
  border-radius: 100px;
  margin-bottom: 16px;
  background: rgba(201, 162, 39, 0.06);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 14px;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--gray-light);
  max-width: 520px;
  margin: 0 auto;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-lg { padding: 16px 34px; font-size: 0.85rem; }
.btn-xl { padding: 20px 44px; font-size: 0.9rem; letter-spacing: 0.1em; }

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black);
  border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(201, 162, 39, 0.3);
}
.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 6px 30px rgba(201, 162, 39, 0.5);
  transform: translateY(-2px);
  color: var(--black);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 162, 39, 0.06);
  transform: translateY(-2px);
}

.btn-green {
  background: linear-gradient(135deg, var(--green-wa), var(--green-wa-dark));
  color: var(--white);
  border-color: var(--green-wa);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.25);
}
.btn-green:hover {
  background: linear-gradient(135deg, #2de070, var(--green-wa));
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.4);
  transform: translateY(-2px);
  color: var(--white);
}

.btn-insta {
  background: var(--insta-grad);
  color: var(--white);
  border-color: transparent;
  padding: 10px 20px;
  font-size: 0.75rem;
}
.btn-insta:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  color: var(--white);
}

.btn-outline-insta {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.2);
  padding: 14px 30px;
  font-size: 0.82rem;
}
.btn-outline-insta:hover {
  border-color: #c13584;
  color: #c13584;
  transform: translateY(-2px);
}

.link-gold { color: var(--gold); border-bottom: 1px solid var(--border-gold); }
.link-gold:hover { color: var(--gold-light); }

/* === FLOATING WHATSAPP === */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 1000;
  background: var(--green-wa);
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  border-radius: 60px;
  box-shadow: 0 6px 32px rgba(37, 211, 102, 0.45);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  transition: all var(--transition);
  animation: floatPulse 3s ease-in-out infinite;
}
.whatsapp-float svg { width: 22px; height: 22px; flex-shrink: 0; }
.whatsapp-float:hover {
  background: var(--green-wa-dark);
  transform: translateY(-4px);
  box-shadow: 0 10px 40px rgba(37, 211, 102, 0.55);
  color: var(--white);
}

@keyframes floatPulse {
  0%, 100% { box-shadow: 0 6px 32px rgba(37, 211, 102, 0.45); }
  50% { box-shadow: 0 6px 40px rgba(37, 211, 102, 0.65); }
}

@media (max-width: 480px) {
  .whatsapp-float span { display: none; }
  .whatsapp-float { padding: 16px; border-radius: 50%; }
}

/* === HEADER === */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  transition: background var(--transition), box-shadow var(--transition);
}

.header-main {
  background: rgba(10, 10, 10, 0.96);
  border-bottom: 1px solid var(--border-dark);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: box-shadow var(--transition), border-color var(--transition);
}

.header.scrolled .header-main {
  border-bottom-color: var(--border-gold);
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.8);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Logo */
.logo-link { display: flex; align-items: center; flex-shrink: 0; }

.logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  display: block;
  mix-blend-mode: screen;
}

.footer-logo-img {
  height: 90px;
  width: auto;
  object-fit: contain;
  display: block;
  margin-bottom: 14px;
  mix-blend-mode: screen;
}

/* Logo placeholder */
.logo-placeholder {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-placeholder--small .logo-text .logo-name { font-size: 1.1rem; }
.logo-bull { display: flex; align-items: center; justify-content: center; width: 52px; height: 40px; flex-shrink: 0; }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-name { font-family: var(--font-display); font-size: 1.3rem; font-weight: 900; letter-spacing: 0.08em; color: var(--gold); text-transform: uppercase; line-height: 1; }
.logo-sub { font-family: var(--font-display); font-size: 0.55rem; font-weight: 500; letter-spacing: 0.15em; color: var(--gray-light); text-transform: uppercase; margin-top: 4px; }

/* Nav */
.nav { margin-left: auto; }

.nav-list {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-link {
  display: block;
  padding: 7px 12px;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--gray-light);
  border-radius: var(--radius);
  transition: all var(--transition);
}
.nav-link:hover { color: var(--gold); background: rgba(201, 162, 39, 0.07); }
.nav-link.active { color: var(--gold); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: 20px;
  flex-shrink: 0;
}

/* Botão menor no header */
.btn-sm {
  padding: 10px 20px;
  font-size: 0.72rem;
  letter-spacing: 0.09em;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 30px;
  padding: 4px;
}
.hamburger span { display: block; height: 2px; background: var(--gold); border-radius: 2px; transition: all var(--transition); }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* === HERO — 2 colunas limpo e premium === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--header-h) + 70px);
  padding-bottom: 90px;
  overflow: hidden;
}

.hero-bg { position: absolute; inset: 0; z-index: 0; }

.hero-pattern {
  position: absolute;
  inset: 0;
  background-color: var(--black);
  /* grade muito sutil — quase invisível */
  background-image:
    radial-gradient(ellipse 50% 55% at 72% 50%, rgba(201, 162, 39, 0.04) 0%, transparent 65%),
    linear-gradient(rgba(255,255,255,0.012) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.012) 1px, transparent 1px);
  background-size: 100% 100%, 100px 100px, 100px 100px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 55%, rgba(13,13,13,0.35) 80%, var(--dark) 100%);
}

/* Layout 2 colunas */
.hero-two-col {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 72px;
  align-items: center;
  animation: heroFadeIn 0.9s ease both;
}

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

/* Coluna esquerda */
.hero-text {
  display: flex;
  flex-direction: column;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 26px;
  opacity: 0.85;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  animation: dotPulse 2.5s ease-in-out infinite;
}

@keyframes dotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.35; transform: scale(0.55); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.4vw, 2.9rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 22px;
  letter-spacing: -0.01em;
}

.title-gold { color: var(--gold); }

.hero-subtitle {
  font-size: clamp(0.93rem, 1.3vw, 1.05rem);
  color: rgba(255, 255, 255, 0.52);
  line-height: 1.75;
  margin-bottom: 38px;
  max-width: 440px;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

/* Micro benefícios */
.hero-micro {
  display: flex;
  flex-direction: column;
  gap: 11px;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.micro-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.42);
}

.micro-item svg { color: var(--gold); flex-shrink: 0; opacity: 0.8; }

/* Coluna direita — card do produto */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-product-card {
  background: linear-gradient(150deg, #1e1e1e 0%, #161616 100%);
  border: 1px solid rgba(201,162,39,0.18);
  border-radius: 18px;
  padding: 38px 28px 24px;
  width: 100%;
  max-width: 320px;
  box-shadow:
    0 24px 64px rgba(0,0,0,0.7),
    0 0 0 1px rgba(255,255,255,0.03) inset;
  position: relative;
  overflow: hidden;
}

.hero-product-card::before {
  content: '';
  position: absolute;
  top: 0; left: 20%; right: 20%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,162,39,0.5), transparent);
}

.product-visual-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.product-glow {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,162,39,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.product-svg {
  width: 170px;
  height: auto;
  filter: drop-shadow(0 10px 28px rgba(0,0,0,0.55));
  position: relative;
  z-index: 1;
}

.product-label { text-align: center; z-index: 1; }

.product-label-text {
  display: block;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.product-label-sub {
  display: block;
  font-family: var(--font-display);
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  margin-top: 4px;
}

.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding-top: 20px;
}

.product-card-stat { text-align: center; }

.pcs-num {
  display: block;
  font-family: var(--font-impact);
  font-size: 1.2rem;
  color: var(--gold);
  letter-spacing: 0.03em;
  line-height: 1;
  margin-bottom: 4px;
}

.pcs-label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.52rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}

.pcs-divider {
  width: 1px;
  height: 28px;
  background: rgba(255,255,255,0.06);
}

/* === CARROSSEL HERO === */
.carousel {
  position: relative;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  background: #0a0a0a;
}

.carousel-track {
  position: relative;
  width: 100%;
}

.carousel-slide {
  display: none;
  animation: carouselFadeIn 0.6s ease both;
}

.carousel-slide.active {
  display: block;
}

@keyframes carouselFadeIn {
  from { opacity: 0; transform: scale(1.03); }
  to   { opacity: 1; transform: scale(1); }
}

.carousel-img-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #080808;
  overflow: hidden;
  position: relative;
  border-radius: 12px 12px 0 0;
}

.carousel-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  padding: 0;
  transition: transform 0.6s ease;
  filter: brightness(1.0) contrast(1.02);
}

.carousel-slide.active .carousel-img {
  animation: zoomIn 6s ease both;
}

@keyframes zoomIn {
  from { transform: scale(1); }
  to   { transform: scale(1.04); }
}

/* Placeholder SVG quando imagem não carrega */
.carousel-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--gold);
  opacity: 0.3;
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Setas */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(201,162,39,0.3);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.25s ease;
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.3s ease, background 0.25s ease;
}

.carousel:hover .carousel-arrow { opacity: 1; }

.carousel-arrow:hover {
  background: rgba(201,162,39,0.2);
  border-color: var(--gold);
}

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

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

.carousel-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.carousel-dot.active {
  background: var(--gold);
  width: 18px;
  border-radius: 3px;
}

/* Responsivo */
@media (max-width: 480px) {
  .carousel-arrow { width: 28px; height: 28px; opacity: 1; }
}

/* === FIM CARROSSEL === */

/* Scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, rgba(201,162,39,0.5), transparent);
  margin: 0 auto;
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50%       { opacity: 0.2; transform: scaleY(0.4); }
}

/* Hero responsive */
@media (max-width: 900px) {
  .hero-two-col {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center;
  }
  .hero-subtitle { max-width: 100%; margin-left: auto; margin-right: auto; }
  .hero-ctas { justify-content: center; }
  .hero-micro { align-items: center; }
  /* MOBILE: texto PRIMEIRO, carrossel DEPOIS */
  .hero-visual { order: 1; }
  .hero-text { order: 0; }
  .hero-product-card { max-width: 100%; }
  .hero { padding-top: calc(var(--header-h) + 36px); padding-bottom: 60px; }
}

@media (max-width: 600px) {
  /* Hero texto */
  .hero-title { font-size: 2rem; line-height: 1.18; }
  .hero-eyebrow { font-size: 0.62rem; }
  .hero-subtitle { font-size: 0.95rem; }

  /* Botões grandes e empilhados */
  .hero-ctas {
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }
  .hero-ctas .btn {
    width: 100%;
    justify-content: center;
    padding: 16px 20px;
    font-size: 0.82rem;
  }

  /* Micro benefícios em linha no mobile */
  .hero-micro {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
  }
  .micro-item {
    font-size: 0.65rem;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 100px;
    padding: 5px 12px;
  }

  /* Carrossel — banner largo sem padding interno */
  .hero-product-card {
    max-width: 100%;
    padding: 0;
    border-radius: 14px;
    overflow: hidden;
  }
  .hero-product-card::before { display: none; }

  /* Foto ocupa toda a largura — aspecto mais alto no mobile */
  .carousel-img-wrap { aspect-ratio: 4 / 3; }

  /* Label e footer dentro do card */
  .product-label {
    padding: 12px 16px 4px;
    text-align: center;
  }
  .product-card-footer {
    padding: 12px 16px 16px;
  }
  .pcs-num { font-size: 1rem; }
  .pcs-label { font-size: 0.48rem; }

  /* Setas do carrossel sempre visíveis no mobile */
  .carousel-arrow { opacity: 1; width: 32px; height: 32px; }
}




.hero-badge-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  color: var(--gold);
  background: rgba(201, 162, 39, 0.1);
  border: 1px solid var(--border-gold);
  border-radius: 100px;
  padding: 7px 16px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  margin: 0 auto;
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.4; transform: scaleY(0.6); }
}

/* === WHATSAPP BOX === */
.whatsapp-box-section {
  padding: 60px 0;
  background: var(--dark-2);
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
}

.whatsapp-box-section--mid {
  background: var(--dark);
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
}

.whatsapp-box {
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.06) 0%, rgba(37, 211, 102, 0.02) 100%);
  border: 1px solid rgba(37, 211, 102, 0.2);
  border-radius: var(--radius-lg);
  padding: 40px 44px;
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  text-align: center;
  justify-content: center;
}

.whatsapp-box--horizontal { text-align: left; justify-content: flex-start; }
.whatsapp-box--horizontal .whatsapp-box-content { flex: 1; }

.whatsapp-box-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--green-wa);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.4);
}
.whatsapp-box-icon svg { width: 36px; height: 36px; color: white; }

.whatsapp-box-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.whatsapp-box-number {
  font-family: var(--font-impact);
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  color: var(--green-wa);
  margin-bottom: 6px;
}

.whatsapp-box-text {
  color: var(--gray-light);
  font-size: 0.95rem;
}

/* === BENEFITS === */
.benefits-section {
  padding: 100px 0;
  background: var(--dark);
}

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

.benefit-card {
  background: var(--dark-2);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.benefit-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}
.benefit-card:hover::before { opacity: 1; }

.benefit-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  background: rgba(201, 162, 39, 0.1);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--gold);
}

.benefit-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.benefit-desc { font-size: 0.93rem; color: var(--gray-light); line-height: 1.6; }

/* === HOW IT WORKS === */
.how-section {
  padding: 100px 0;
  background: var(--dark-2);
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
}

/* Aviso destaque — quebra objeção */
.how-highlight {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(201, 162, 39, 0.07);
  border: 1px solid rgba(201, 162, 39, 0.28);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 14px 22px;
  margin: -20px auto 52px;
  max-width: 680px;
  color: rgba(255,255,255,0.75);
  font-size: 0.93rem;
  line-height: 1.55;
}

.how-highlight svg {
  color: var(--gold);
  flex-shrink: 0;
}

.steps-wrapper {
  position: relative;
  margin-bottom: 56px;
}

.steps-line {
  position: absolute;
  top: 28px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-gold), var(--gold), var(--border-gold), transparent);
  z-index: 0;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}

.step-card {
  text-align: center;
  padding: 28px 16px 24px;
  background: var(--dark-3);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  transition: border-color var(--transition), transform var(--transition);
}

.step-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-3px);
}

.step-number {
  font-family: var(--font-impact);
  font-size: 2.6rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 16px;
  position: relative;
  display: inline-block;
}

.step-number::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 2px;
  background: var(--gold);
  opacity: 0.6;
}

.step-title {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  margin-top: 20px;
  line-height: 1.35;
}

.step-desc {
  font-size: 0.86rem;
  color: var(--gray-light);
  line-height: 1.7;
}

.step-desc strong {
  color: rgba(255,255,255,0.75);
  font-weight: 600;
}

.how-cta {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.how-cta-note {
  font-size: 0.83rem;
  color: var(--gray);
  font-style: italic;
}

@media (max-width: 768px) {
  .how-highlight { margin-bottom: 36px; font-size: 0.88rem; }
}


/* === PRODUCTS === */
.products-section {
  padding: 100px 0;
  background: var(--dark);
}

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

.product-card {
  background: var(--dark-2);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  transition: all var(--transition);
}

.product-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

.product-badge {
  position: absolute;
  top: -1px;
  right: 20px;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-display);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 0 0 var(--radius) var(--radius);
}

.product-badge-dark {
  background: var(--dark-4);
  color: var(--gold);
  border: 1px solid var(--border-gold);
  border-top: none;
}

.product-icon {
  display: flex;
  justify-content: center;
  margin: 8px 0;
  opacity: 0.9;
}

.product-name {
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}

.product-desc { font-size: 0.87rem; color: var(--gray-light); line-height: 1.6; }

.product-features {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 14px 0;
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
}

.product-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.83rem;
  color: var(--gray-light);
}

.product-features li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* === PHONE MOCKUP INSTAGRAM === */
.phone-mockup-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
}

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

.phone-frame {
  width: 230px;
  background: #0a0a0a;
  border-radius: 36px;
  border: 2px solid rgba(201, 162, 39, 0.25);
  box-shadow:
    0 0 0 6px #111,
    0 0 0 7px rgba(201,162,39,0.12),
    0 24px 60px rgba(0,0,0,0.7);
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.phone-mockup-link:hover .phone-frame {
  transform: translateY(-6px);
  box-shadow:
    0 0 0 6px #111,
    0 0 0 7px rgba(201,162,39,0.22),
    0 32px 70px rgba(0,0,0,0.75);
}

.phone-notch {
  height: 28px;
  background: #0a0a0a;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.phone-speaker {
  width: 50px;
  height: 5px;
  background: #222;
  border-radius: 3px;
}

.phone-screen {
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.phone-screen-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.5s ease;
}

.phone-mockup-link:hover .phone-screen-img {
  transform: scale(1.02);
}

.phone-bar {
  height: 24px;
  background: #0a0a0a;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-home {
  width: 80px;
  height: 4px;
  background: #333;
  border-radius: 2px;
}

/* Badge Instagram */
.phone-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(201,162,39,0.1);
  border: 1px solid rgba(201,162,39,0.25);
  border-radius: 100px;
  padding: 6px 14px;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--gold);
}

/* CTA abaixo do celular */
.phone-cta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  transition: color 0.3s ease;
}

.phone-mockup-link:hover .phone-cta {
  color: var(--gold);
}

@media (max-width: 768px) {
  .phone-frame { width: 200px; }
  .phone-screen-img { height: 360px; }
}

/* === FIM PHONE MOCKUP === */

/* === DIFERENCIAIS === */
.diferenciais-section {
  padding: 100px 0;
  background: var(--dark-2);
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
}

.diferenciais-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.diferenciais-text .section-label { display: inline-flex; margin-bottom: 16px; }
.diferenciais-text .section-title { text-align: left; margin-bottom: 16px; }

.diferenciais-desc { color: var(--gray-light); font-size: 1rem; line-height: 1.75; margin-bottom: 32px; }

.diferenciais-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.diferencial-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.diferencial-check {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(201, 162, 39, 0.12);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.diferencial-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2px;
}

.diferencial-item span { font-size: 0.85rem; color: var(--gray-light); }

.diferenciais-visual {
  display: flex;
  justify-content: center;
}

.visual-card {
  background: var(--dark-3);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 44px 32px;
  text-align: center;
  width: 100%;
  max-width: 360px;
  box-shadow: var(--shadow-gold);
}

.visual-emblem {
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
}

.visual-stats {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding-top: 24px;
  border-top: 1px solid var(--border-dark);
}

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

.stat-number {
  display: block;
  font-family: var(--font-impact);
  font-size: 1.6rem;
  color: var(--gold);
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-light);
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border-dark);
}

/* === TESTIMONIALS === */
.testimonials-section {
  padding: 100px 0;
  background: var(--dark);
}

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

.testimonial-card {
  background: var(--dark-2);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition);
}

.testimonial-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-2px);
}

.testimonial-stars {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testimonial-text {
  font-size: 1rem;
  color: var(--white-dim);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 24px;
}

.testimonial-text::before { content: '"'; color: var(--gold); font-size: 1.4em; line-height: 0; }
.testimonial-text::after  { content: '"'; color: var(--gold); font-size: 1.4em; line-height: 0; }

.testimonial-footer { display: flex; align-items: center; gap: 14px; }

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--black);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial-name {
  display: block;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  font-style: normal;
}

.testimonial-role { font-size: 0.8rem; color: var(--gray-light); }

/* === VIDEO GALLERY === */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.video-card {
  background: var(--dark-2);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}

.video-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
}

.video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 9/16;
  background: var(--black);
  overflow: hidden;
}

.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-info {
  padding: 16px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.video-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,162,39,0.1);
  border: 1px solid var(--border-gold);
  border-radius: 100px;
  padding: 4px 12px;
  width: fit-content;
}

.video-caption {
  font-size: 0.87rem;
  color: var(--gray-light);
  line-height: 1.55;
}

.gallery-cta {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.gallery-note {
  font-size: 0.88rem;
  color: var(--gray-light);
}

@media (max-width: 1024px) {
  .video-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .video-grid { grid-template-columns: 1fr; }
}

/* === GALLERY === */
.gallery-section {
  padding: 100px 0;
  background: var(--dark-2);
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
  margin-bottom: 28px;
}

.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  transition: transform var(--transition);
}

.gallery-item:hover { transform: scale(1.02); }

.gallery-item--large {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
  aspect-ratio: auto;
}

.gallery-placeholder {
  width: 100%;
  height: 100%;
  min-height: 200px;
  background: var(--dark-3);
  border: 1px solid var(--border-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  transition: all var(--transition);
  position: relative;
  border-radius: var(--radius-lg);
  cursor: pointer;
}

/* 
  GALERIA: substitua os .gallery-placeholder por <img src="foto-marca-X.jpg" alt="..." class="gallery-img" />
  e remova o CSS de placeholder para os items com foto real
*/

.gallery-placeholder:hover {
  background: var(--dark-4);
  border-color: var(--border-gold);
}

.gallery-icon { opacity: 0.5; }
.gallery-label {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
}

.gallery-note {
  text-align: center;
  font-size: 0.9rem;
  color: var(--gray-light);
}

/* === INSTAGRAM === */
.instagram-section {
  padding: 100px 0;
  background: var(--dark);
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.insta-card {
  background: var(--dark-2);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}

.insta-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

.insta-thumb {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  cursor: pointer;
}

/* Thumbs com gradientes premium para simular conteúdo de vídeo */
.insta-thumb--1 { background: linear-gradient(135deg, #1a0a00 0%, #3d1f00 40%, #c9a227 100%); }
.insta-thumb--2 { background: linear-gradient(135deg, #0a0a0a 0%, #2a2a2a 50%, #8a6a10 100%); }
.insta-thumb--3 { background: linear-gradient(135deg, #0d0500 0%, #331500 60%, #b07a20 100%); }
.insta-thumb--4 { background: linear-gradient(135deg, #050505 0%, #1a1a1a 40%, #7a5a0a 100%); }
.insta-thumb--5 { background: linear-gradient(135deg, #100800 0%, #2d1a00 50%, #c09020 100%); }
.insta-thumb--6 { background: linear-gradient(135deg, #0a0300 0%, #241000 55%, #a07818 100%); }

.insta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}

.insta-thumb:hover .insta-overlay { background: rgba(0, 0, 0, 0.35); }

.insta-play {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  opacity: 0;
  transform: scale(0.8);
  transition: all var(--transition);
}

.insta-thumb:hover .insta-play { opacity: 1; transform: scale(1); }

.insta-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(0, 0, 0, 0.7);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 5px 10px;
  border-radius: 100px;
  backdrop-filter: blur(4px);
}

.insta-content {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.insta-handle {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.06em;
}

.insta-caption {
  font-size: 0.85rem;
  color: var(--gray-light);
  line-height: 1.5;
  flex: 1;
}

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

/* === LOCATION === */
.location-section {
  padding: 100px 0;
  background: var(--dark-2);
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
}

.location-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}

.location-card {
  display: flex;
  gap: 28px;
  align-items: flex-start;
}

.location-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(201, 162, 39, 0.1);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

.location-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.location-address {
  font-size: 0.95rem;
  color: var(--gray-light);
  line-height: 1.7;
  margin-bottom: 14px;
}

.location-coverage {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.88rem;
  color: var(--gold);
  margin-bottom: 22px;
}

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

.location-map-placeholder {
  display: flex;
  justify-content: center;
}

.map-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* === FAQ === */
.faq-section {
  padding: 100px 0;
  background: var(--dark);
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--dark-2);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq-item.open { border-color: var(--border-gold); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 28px;
  text-align: left;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  transition: color var(--transition);
  cursor: pointer;
  background: none;
  border: none;
}

.faq-question:hover { color: var(--gold); }
.faq-item.open .faq-question { color: var(--gold); }

.faq-icon {
  flex-shrink: 0;
  transition: transform var(--transition);
  color: var(--gray-light);
}
.faq-item.open .faq-icon { transform: rotate(180deg); color: var(--gold); }

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

.faq-item.open .faq-answer { max-height: 300px; }

.faq-answer p {
  padding: 0 28px 24px;
  font-size: 0.95rem;
  color: var(--gray-light);
  line-height: 1.75;
}

/* === CTA FINAL === */
.cta-final {
  position: relative;
  padding: 120px 0;
  background: var(--black);
  text-align: center;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 50%, rgba(201, 162, 39, 0.06) 0%, transparent 70%),
    linear-gradient(rgba(201, 162, 39, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 162, 39, 0.02) 1px, transparent 1px);
  background-size: 100% 100%, 50px 50px, 50px 50px;
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

/* Bull crop — mostra só o touro, esconde o texto */
.cta-bull {
  width: 160px;
  height: 130px;
  overflow: hidden;
  position: relative;
  /* fade na parte de baixo para esconder o texto da logo */
  -webkit-mask-image: linear-gradient(to bottom, black 55%, transparent 90%);
  mask-image: linear-gradient(to bottom, black 55%, transparent 90%);
}

.cta-bull-img {
  width: 160px;
  height: auto;
  display: block;
  /* a imagem tem fundo preto — mix-blend-mode screen remove o preto */
  mix-blend-mode: screen;
  filter: drop-shadow(0 4px 20px rgba(201,162,39,0.25));
}



.cta-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.25;
}

.cta-subtitle { font-size: 1rem; color: var(--gray-light); max-width: 480px; line-height: 1.7; }

.cta-note {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
}

/* === FOOTER === */
.footer { background: var(--black); }

.footer-main {
  padding: 72px 0;
  border-top: 1px solid var(--border-gold);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 48px;
}

.footer-brand { padding-right: 24px; }
.footer-tagline { font-size: 0.9rem; color: var(--gray-light); line-height: 1.7; margin-top: 18px; margin-bottom: 10px; }
.footer-coverage { font-family: var(--font-display); font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); }

.footer-col-title {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.88rem;
  color: var(--gray-light);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold); }

.footer-contacts { display: flex; flex-direction: column; gap: 12px; }
.footer-contacts a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--gray-light);
  transition: color var(--transition);
}
.footer-contacts a:hover { color: var(--gold); }

.footer-address {
  font-size: 0.88rem;
  color: var(--gray-light);
  line-height: 1.7;
  margin-bottom: 12px;
}

.footer-map-link {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--gold);
  transition: color var(--transition);
}
.footer-map-link:hover { color: var(--gold-light); }

.footer-bottom {
  padding: 20px 0;
  border-top: 1px solid var(--border-dark);
  display: flex;
  align-items: center;
}

.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-copy, .footer-location {
  font-size: 0.78rem;
  color: var(--graphite);
}

/* === RESPONSIVE === */

@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand { grid-column: 1 / -1; }
  .diferenciais-inner { gap: 40px; }
  .location-inner { grid-template-columns: 1fr; gap: 32px; }
  .location-map-placeholder { display: none; }
}


/* ============================================================
   MOBILE — 768px e abaixo
   ============================================================ */
@media (max-width: 768px) {
  :root { --header-h: 58px; }

  /* HEADER */
  .header-top { display: none; }
  .header-main { height: var(--header-h); }
  .logo-img { height: 40px; mix-blend-mode: screen; }
  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    background: rgba(8,8,8,0.98);
    border-bottom: 1px solid rgba(201,162,39,0.25);
    padding: 18px 20px 28px;
    transform: translateY(-110%);
    transition: transform 0.35s ease;
    z-index: 850;
    backdrop-filter: blur(16px);
  }
  .nav.open { transform: translateY(0); }
  .nav-list { flex-direction: column; gap: 2px; }
  .nav-link { font-size: 0.95rem; padding: 14px 16px; border-radius: 8px; }
  .header-actions .btn { display: none; }
  .hamburger { display: flex; }

  /* HERO — stories format */
  .hero { padding-top: var(--header-h); padding-bottom: 0; min-height: auto; }
  .hero-bg { display: none; }
  .hero-two-col { display: flex; flex-direction: column; gap: 0; }

  .hero-visual { order: 0; width: 100%; position: relative; }
  /* Two-col vira wrapper relativo para o texto sobreposto */
  .hero-two-col { position: relative; }
  .hero-product-card {
    width: 100%; max-width: 100%;
    border-radius: 0; border: none;
    padding: 0; box-shadow: none; background: #000;
    position: relative;
  }
  .hero-product-card::before { display: none; }

  .carousel { border-radius: 0; width: 100%; }
  .carousel-img-wrap {
    aspect-ratio: 9 / 16;
    border-radius: 0; width: 100%;
    max-height: 88vh;
  }
  .carousel-img { object-fit: cover; object-position: center; filter: brightness(0.8); }

  /* Gradiente sobre foto para texto legível */
  .carousel-img-wrap::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 58%;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.45) 55%, transparent 100%);
    pointer-events: none;
    z-index: 2;
  }

  /* Texto sobreposto na foto */
  .hero-text {
    order: 1;
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 0 20px 28px;
    background: none;
    z-index: 10;
    text-align: left;
  }
  .hero-eyebrow { font-size: 0.6rem; margin-bottom: 10px; opacity: 0.9; }
  .hero-title { font-size: 1.7rem; line-height: 1.18; margin-bottom: 10px; text-shadow: 0 2px 12px rgba(0,0,0,0.7); }
  .hero-subtitle { font-size: 0.86rem; line-height: 1.6; margin-bottom: 18px; color: rgba(255,255,255,0.78); max-width: 320px; }
  .hero-ctas { flex-direction: column; gap: 9px; margin-bottom: 0; }
  .hero-ctas .btn { width: 100%; justify-content: center; padding: 15px 20px; font-size: 0.8rem; }
  .hero-micro { display: none; }
  .product-label { display: none; }
  .product-card-footer { display: none; }

  /* Setas e dots */
  .carousel-arrow { opacity: 1 !important; width: 34px; height: 34px; top: 38%; z-index: 15; background: rgba(0,0,0,0.5); }
  .carousel-dots { bottom: 175px; z-index: 15; }

  /* SEÇÕES GERAIS */
  .section-title { font-size: 1.55rem; line-height: 1.25; }
  .section-desc { font-size: 0.92rem; }
  .section-header { margin-bottom: 32px; }
  .section-label { font-size: 0.65rem; }

  .benefits-grid { grid-template-columns: 1fr; gap: 12px; }
  .benefit-card { padding: 22px 18px; }
  .benefit-title { font-size: 0.95rem; }
  .benefit-desc { font-size: 0.88rem; }
  .benefit-icon { width: 44px; height: 44px; margin-bottom: 14px; }

  .steps-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .steps-line { display: none; }
  .step-card { padding: 20px 12px 16px; }
  .step-number { font-size: 1.9rem; }
  .step-title { font-size: 0.82rem; margin-top: 14px; margin-bottom: 8px; }
  .step-desc { font-size: 0.79rem; line-height: 1.6; }
  .how-highlight { font-size: 0.84rem; padding: 12px 16px; margin-bottom: 36px; }
  .how-cta .btn { width: 100%; justify-content: center; }
  .how-cta-note { font-size: 0.78rem; }

  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial-card { padding: 22px 18px; }
  .testimonial-text { font-size: 0.92rem; }

  .diferenciais-inner { grid-template-columns: 1fr; }
  .diferenciais-visual { display: none; }
  .diferenciais-desc { font-size: 0.9rem; }
  .diferencial-item strong { font-size: 0.88rem; }
  .diferencial-item span { font-size: 0.82rem; }

  .video-grid { grid-template-columns: 1fr; }
  .video-caption { font-size: 0.85rem; }

  .phone-frame { width: 180px; }
  .phone-screen-img { height: 320px; }

  .whatsapp-box { flex-direction: column; text-align: center; padding: 24px 16px; gap: 16px; }
  .whatsapp-box--horizontal { text-align: center; }
  .whatsapp-box--horizontal .whatsapp-box-content { flex: none; }
  .whatsapp-box-title { font-size: 1.05rem; }
  .whatsapp-box-number { font-size: 1.15rem; }
  .whatsapp-box-text { font-size: 0.86rem; }
  .whatsapp-box .btn { width: 100%; justify-content: center; }

  .location-card { flex-direction: column; gap: 16px; }
  .location-name { font-size: 1rem; }
  .location-address { font-size: 0.86rem; }
  .location-actions { flex-direction: column; }
  .location-actions .btn { width: 100%; justify-content: center; }

  .faq-question { padding: 16px 18px; font-size: 0.86rem; gap: 12px; }
  .faq-answer p { padding: 0 18px 18px; font-size: 0.88rem; }

  .cta-title { font-size: 1.4rem; line-height: 1.3; }
  .cta-subtitle { font-size: 0.9rem; }
  .cta-note { font-size: 0.63rem; }
  .btn-xl { padding: 17px 24px; font-size: 0.82rem; width: 100%; justify-content: center; }
  .cta-content .btn-xl { display: flex; }
  .cta-bull { width: 120px; height: 100px; }
  .cta-bull-img { width: 120px; }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-brand { grid-column: auto; }
  .footer-logo-img { height: 70px; mix-blend-mode: screen; }
  .footer-tagline { font-size: 0.86rem; }
  .footer-col-title { font-size: 0.66rem; margin-bottom: 14px; }
  .footer-links a, .footer-contacts a { font-size: 0.86rem; }
  .footer-address { font-size: 0.84rem; }
  .footer-copy, .footer-location { font-size: 0.7rem; }

  .benefits-section, .how-section, .testimonials-section,
  .gallery-section, .location-section, .faq-section,
  .diferenciais-section { padding: 56px 0; }
  .whatsapp-box-section { padding: 40px 0; }
  .cta-final { padding: 64px 0; }
  .footer-main { padding: 44px 0; }
}

/* ============================================================
   MOBILE PEQUENO — 480px
   ============================================================ */
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .steps-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 1.55rem; }
  .hero-subtitle { font-size: 0.84rem; max-width: 100%; }
  .section-title { font-size: 1.38rem; }
  .section-header { margin-bottom: 28px; }
  .benefit-card { padding: 18px 16px; }
  .step-card { padding: 18px 12px 14px; }
  .testimonial-card { padding: 18px 16px; }
  .faq-list { gap: 8px; }
  .carousel-dots { bottom: 155px; }
}

/* === SCROLL ANIMATIONS === */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* === ACCESSIBILITY === */
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
::selection { background: rgba(201,162,39,0.25); color: var(--white); }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--graphite); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-dark); }
