/* ==========================================================================
   WESTBAY — Landing Page
   Tokens de design
   ========================================================================== */

:root{
  /* Cor — identidade real da Westbay: preto/grafite + verde neon */
  --bg: #07090A;
  --navy: #101314;
  --navy-2: #16191B;
  --navy-3: #1D2123;
  --line: rgba(182, 255, 60, 0.14);
  --blue: #A6FF1E;        /* verde neon principal (identidade da logo) */
  --blue-light: #C6FF66;  /* verde neon claro, para hover/detalhes */
  --green: #25D366;       /* verde WhatsApp, mantido reconhecível */
  --green-light: #3FE07F;
  --white: #F5F7FA;
  --silver: #9AA0A6;
  --silver-dim: #63696E;

  /* Tipografia */
  --font-display: "Sora", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;

  /* Layout */
  --maxw: 1180px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 26px;
  --shadow-soft: 0 20px 60px -20px rgba(0,0,0,0.65);
  --shadow-glow: 0 0 0 1px rgba(166,255,30,0.28), 0 20px 70px -25px rgba(166,255,30,0.35);
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }

body{
  margin: 0;
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
button{ font-family: inherit; cursor: pointer; }
ul{ margin: 0; padding: 0; list-style: none; }

.container{
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

section{ position: relative; }

.eyebrow{
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-light);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before{
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(31,175,92,0.18);
}

h1, h2, h3, h4{
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--white);
}

p{ margin: 0; color: var(--silver); }

.section-head{
  max-width: 620px;
  margin-bottom: 44px;
}
.section-head h2{
  font-size: clamp(28px, 4vw, 40px);
  margin-top: 14px;
}
.section-head p{ margin-top: 14px; font-size: 16.5px; }

/* Sinal / textura de assinatura — anéis concêntricos usados como elemento
   distintivo em toda a página (referência a sinal / conectividade) */
.signal-rings{
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(166,255,30,0.14);
  pointer-events: none;
}

/* ==========================================================================
   Botões
   ========================================================================== */

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 100px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color .25s ease;
  white-space: nowrap;
}
.btn:active{ transform: scale(0.97); }

.btn-primary{
  background: var(--blue);
  color: #0B1300;
  box-shadow: var(--shadow-glow);
}
.btn-primary:hover{ background: var(--blue-light); transform: translateY(-2px); }

.btn-whatsapp{
  background: var(--green);
  color: #06210F;
}
.btn-whatsapp svg{ flex-shrink: 0; }
.btn-whatsapp:hover{ background: var(--green-light); transform: translateY(-2px); box-shadow: 0 16px 40px -16px rgba(31,175,92,0.55); }

.btn-ghost{
  background: transparent;
  border-color: var(--line);
  color: var(--white);
}
.btn-ghost:hover{ border-color: var(--blue-light); background: rgba(166,255,30,0.10); }

.btn-block{ width: 100%; }
.btn-sm{ padding: 12px 20px; font-size: 13.5px; }

/* ==========================================================================
   Header
   ========================================================================== */

.header{
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  background: rgba(5,11,22,0.72);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, padding .3s ease;
}
.header.is-scrolled{
  border-bottom-color: var(--line);
  padding: 12px 0;
}
.header .container{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo{
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.01em;
}
.logo .dot{ color: var(--blue-light); }

.logo-mark{
  width: 34px; height: 34px;
  border-radius: 9px;
  background: linear-gradient(150deg, var(--blue) 0%, #14211A 100%);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 18px -6px rgba(166,255,30,0.35);
}

.nav-links{
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 14.5px;
  color: var(--silver);
}
.nav-links a{ transition: color .2s ease; }
.nav-links a:hover{ color: var(--white); }

.header-actions{ display: flex; align-items: center; gap: 14px; }

.nav-toggle{
  display: none;
  width: 40px; height: 40px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: transparent;
  align-items: center;
  justify-content: center;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after{
  content: "";
  display: block;
  width: 18px; height: 2px;
  background: var(--white);
  position: relative;
  transition: transform .25s ease, opacity .25s ease;
}
.nav-toggle span::before{ position: absolute; top: -6px; }
.nav-toggle span::after{ position: absolute; top: 6px; }

/* ==========================================================================
   Hero
   ========================================================================== */

.hero{
  padding: 168px 0 96px;
  overflow: hidden;
}

.hero .container{
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
  position: relative;
}

.hero-copy h1{
  font-size: clamp(38px, 5.2vw, 60px);
  line-height: 1.04;
  margin-top: 18px;
}
.hero-copy h1 span{ color: var(--blue-light); }

.hero-copy p.lead{
  margin-top: 22px;
  font-size: 18px;
  max-width: 460px;
  color: var(--silver);
}

.hero-cta{
  display: flex;
  gap: 14px;
  margin-top: 34px;
  flex-wrap: wrap;
}

.trust-row{
  margin-top: 46px;
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 14px 28px;
}
.trust-item{
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--silver);
}
.trust-item svg{ flex-shrink: 0; color: var(--green-light); }

.hero-visual{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 460px;
}

.hero-visual .signal-rings:nth-child(1){ width: 620px; height: 620px; }
.hero-visual .signal-rings:nth-child(2){ width: 460px; height: 460px; border-color: rgba(166,255,30,0.20);}
.hero-visual .signal-rings:nth-child(3){ width: 320px; height: 320px; border-color: rgba(31,175,92,0.18); }

.hero-glow{
  position: absolute;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(166,255,30,0.28) 0%, rgba(166,255,30,0) 70%);
  filter: blur(10px);
}

/* Moldura para a foto real do aparelho no hero */
.hero-photo-frame{
  position: relative;
  width: 300px;
  max-width: 82vw;
  border-radius: var(--radius-lg);
  padding: 10px;
  background: linear-gradient(165deg, var(--navy-3) 0%, var(--navy) 100%);
  border: 1px solid rgba(166,255,30,0.22);
  box-shadow: var(--shadow-soft), inset 0 0 0 1px rgba(255,255,255,0.03);
  animation: floatY 5s ease-in-out infinite;
}
.hero-photo-frame img{
  width: 100%;
  border-radius: calc(var(--radius-lg) - 6px);
  display: block;
  object-fit: cover;
  aspect-ratio: 4 / 5;
}
.hero-photo-frame .badge{
  position: absolute;
  top: 26px; left: 26px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0B1300;
  background: var(--blue);
  padding: 5px 11px;
  border-radius: 100px;
  z-index: 2;
  box-shadow: 0 8px 20px -8px rgba(166,255,30,0.6);
}

@keyframes floatY{
  0%, 100%{ transform: translateY(0); }
  50%{ transform: translateY(-14px); }
}

/* ==========================================================================
   Marquee de confiança
   ========================================================================== */

.marquee-strip{
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--navy);
  padding: 16px 0;
  overflow: hidden;
}
.marquee-track{
  display: flex;
  gap: 56px;
  width: max-content;
  animation: marquee 26s linear infinite;
}
.marquee-track span{
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--silver-dim);
  white-space: nowrap;
}
@keyframes marquee{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); }
}

/* ==========================================================================
   Seções gerais
   ========================================================================== */

.section{ padding: 100px 0; }
.section-alt{ background: var(--navy); }

.head-row{
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

/* Ofertas — cards de produto */

.products-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.product-card{
  background: linear-gradient(180deg, var(--navy-2) 0%, var(--navy) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  overflow: hidden;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
  opacity: 0;
  transform: translateY(24px);
}
.product-card.in-view{ opacity: 1; transform: translateY(0); }
.product-card:hover{
  transform: translateY(-6px);
  border-color: rgba(166,255,30,0.32);
  box-shadow: var(--shadow-glow);
}

.product-tag{
  position: absolute;
  top: 20px; right: 20px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-light);
  background: rgba(31,175,92,0.12);
  border: 1px solid rgba(31,175,92,0.3);
  padding: 5px 10px;
  border-radius: 100px;
}

.product-media{
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--navy-3);
}
.product-media img{
  width: 100%;
  height: auto;
  display: block;
  transition: transform .5s ease;
}
.product-card:hover .product-media img{ transform: scale(1.03); }
.product-media .ph-placeholder{
  height: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--silver-dim);
  text-align: center;
  padding: 0 20px;
}

.product-info h3{ font-size: 21px; }

.product-specs{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}
.spec-chip{
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--silver);
  border: 1px solid var(--line);
  padding: 5px 10px;
  border-radius: 8px;
  background: rgba(139,149,168,0.05);
}

.product-price-row{
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-top: 6px;
  padding-top: 16px;
  border-top: 1px dashed var(--line);
}
.product-price{
  font-family: var(--font-mono);
  font-size: 26px;
  font-weight: 600;
  color: var(--white);
}
.product-price small{
  font-size: 12px;
  color: var(--silver-dim);
  font-weight: 400;
  display: block;
  font-family: var(--font-body);
}

.products-more-note{
  margin-top: 28px;
  border: 1px dashed var(--line);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--silver-dim);
}

/* Por que comprar */

.why-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.why-card{
  background: var(--navy-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  opacity: 0;
  transform: translateY(24px);
  transition: transform .3s ease, border-color .3s ease;
}
.why-card.in-view{ opacity: 1; transform: translateY(0); }
.why-card:hover{ border-color: rgba(166,255,30,0.28); transform: translateY(-4px); }
.why-icon{
  width: 46px; height: 46px;
  border-radius: 12px;
  background: rgba(166,255,30,0.14);
  display: flex; align-items: center; justify-content: center;
  font-size: 21px;
  margin-bottom: 18px;
}
.why-card h3{ font-size: 17px; margin-bottom: 10px; }
.why-card p{ font-size: 14.5px; }

/* Depoimentos */

.testi-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.testi-card{
  background: var(--navy);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px;
}
.stars{ color: var(--green-light); font-size: 14px; letter-spacing: 2px; }
.testi-card p.quote{
  margin-top: 14px;
  font-size: 15px;
  color: var(--white);
  font-style: italic;
}
.testi-author{
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--silver-dim);
}
.testi-avatar{
  width: 30px; height: 30px;
  border-radius: 50%;
  background: linear-gradient(150deg, var(--blue) 0%, var(--navy-3) 100%);
}

.proof-placeholder{
  margin-top: 28px;
  border: 1px dashed var(--line);
  border-radius: var(--radius-lg);
  padding: 40px 24px;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--silver-dim);
}

/* CTA dúvida */

.doubt-section{
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 56px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
}
.doubt-section .signal-rings{ right: -120px; top: -120px; width: 340px; height: 340px; }
.doubt-copy h2{ font-size: clamp(26px, 3.4vw, 34px); }
.doubt-copy p{ margin-top: 16px; font-size: 16px; max-width: 440px; }
.doubt-copy .btn{ margin-top: 26px; }

.doubt-visual{
  display: flex;
  align-items: center;
  justify-content: center;
}
.doubt-visual .spec-block{
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--silver);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 22px;
  width: 100%;
  background: var(--navy-2);
}
.doubt-visual .spec-block div{ display:flex; justify-content: space-between; padding: 7px 0; border-bottom: 1px dashed var(--line); }
.doubt-visual .spec-block div:last-child{ border-bottom: none; }
.doubt-visual .spec-block span:last-child{ color: var(--white); }

/* Formulário */

.form-section .container{
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 52px;
  align-items: flex-start;
}

.form-side-note{
  position: sticky;
  top: 120px;
}
.form-side-note ul{ margin-top: 22px; display: flex; flex-direction: column; gap: 14px; }
.form-side-note li{
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 14.5px; color: var(--silver);
}
.form-side-note li svg{ flex-shrink: 0; margin-top: 3px; color: var(--blue-light); }

.lead-form{
  background: var(--navy-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.form-row{ margin-bottom: 20px; }
.form-row label{
  display: block;
  font-size: 13px;
  color: var(--silver);
  margin-bottom: 8px;
  font-family: var(--font-mono);
  letter-spacing: 0.02em;
}
.form-row input,
.form-row select,
.form-row textarea{
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 13px 14px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14.5px;
  transition: border-color .2s ease;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus{
  outline: none;
  border-color: var(--blue);
}
.form-row textarea{ resize: vertical; min-height: 90px; }
.form-grid-2{ display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.form-note{
  margin-top: 16px;
  font-size: 12.5px;
  color: var(--silver-dim);
  text-align: center;
}

/* CTA final */

.final-cta{
  text-align: center;
  padding: 110px 0;
  position: relative;
  overflow: hidden;
}
.final-cta h2{ font-size: clamp(30px, 5vw, 46px); max-width: 700px; margin: 18px auto 0; }
.final-cta p{ margin-top: 16px; font-size: 17px; }
.final-cta .btn{ margin-top: 32px; }
.final-cta .signal-rings{ left: 50%; top: 50%; transform: translate(-50%,-50%); }
.final-cta .signal-rings:nth-child(1){ width: 900px; height: 900px; }
.final-cta .signal-rings:nth-child(2){ width: 650px; height: 650px; }
.final-cta .signal-rings:nth-child(3){ width: 420px; height: 420px; }

/* Footer */

.footer{
  border-top: 1px solid var(--line);
  padding: 60px 0 28px;
  background: var(--navy);
}
.footer-top{
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line);
}
.footer-brand p{ margin-top: 12px; max-width: 260px; font-size: 14px; }
.footer-cols{ display: flex; gap: 64px; flex-wrap: wrap; }
.footer-col h4{ font-size: 13px; color: var(--silver-dim); font-family: var(--font-mono); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 16px; }
.footer-col ul{ display: flex; flex-direction: column; gap: 11px; }
.footer-col a{ font-size: 14.5px; color: var(--silver); transition: color .2s ease; }
.footer-col a:hover{ color: var(--white); }
.footer-bottom{
  margin-top: 26px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--silver-dim);
}

/* Botão flutuante do WhatsApp */

.wa-float{
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 200;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--green);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 14px 34px -10px rgba(31,175,92,0.65);
  border: none;
  animation: pulseWa 2.6s ease-in-out infinite;
}
.wa-float:hover{ background: var(--green-light); }
@keyframes pulseWa{
  0%, 100%{ box-shadow: 0 14px 34px -10px rgba(31,175,92,0.65), 0 0 0 0 rgba(31,175,92,0.5); }
  50%{ box-shadow: 0 14px 34px -10px rgba(31,175,92,0.65), 0 0 0 12px rgba(31,175,92,0); }
}

/* Animações de entrada */
.reveal{ opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in-view{ opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce){
  *{ animation: none !important; transition: none !important; }
  .reveal, .product-card, .why-card{ opacity: 1; transform: none; }
}

/* ==========================================================================
   Responsivo
   ========================================================================== */

@media (max-width: 980px){
  .hero .container{ grid-template-columns: 1fr; }
  .hero-visual{ order: -1; min-height: 340px; }
  .hero-copy p.lead{ max-width: none; }
  .doubt-section{ grid-template-columns: 1fr; padding: 36px; }
  .form-section .container{ grid-template-columns: 1fr; }
  .form-side-note{ position: static; }
  .nav-links{
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--navy);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 8px 0;
  }
  .nav-links.nav-open{ display: flex; }
  .nav-links a{ width: 100%; padding: 14px 24px; }
  .nav-links a:hover{ background: rgba(166,255,30,0.10); }
  .nav-toggle{ display: flex; }
  .header-actions .btn-ghost{ display: none; }
}

@media (max-width: 640px){
  .container{ padding: 0 18px; }
  .hero{ padding: 128px 0 64px; }
  .hero-cta{ flex-direction: column; align-items: stretch; }
  .hero-cta .btn{ width: 100%; }
  .trust-row{ grid-template-columns: 1fr; }
  .section{ padding: 70px 0; }
  .head-row{ flex-direction: column; align-items: flex-start; }
  .form-grid-2{ grid-template-columns: 1fr; }
  .lead-form{ padding: 24px; }
  .final-cta{ padding: 80px 0; }
  .footer-top{ flex-direction: column; }
  .footer-cols{ gap: 36px; }
  .wa-float{ right: 14px; bottom: 14px; width: 54px; height: 54px; }
}

/* ==========================================================================
   ADIÇÕES — DESTAQUES DE PRODUTO + SEÇÃO DE VÍDEO
   Bloco aditivo: usa os mesmos tokens de cor, fonte e raio já definidos
   no :root. Nenhuma regra anterior foi alterada.
   ========================================================================== */

/* Proporção uniforme das fotos de produto (as fotos atuais já são 3:4,
   então nada muda visualmente nos cards antigos) */
.product-media picture{ display: block; }
.product-media img{
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center;
}

/* Alinha a linha de preço na base do card, mesmo quando os cards têm
   quantidades diferentes de chips (ex.: iPhone 17 tem menos specs) */
.product-card .product-info{ flex: 1 1 auto; }
.product-card .product-price-row{ margin-top: auto; }

/* Linha de destaque do aparelho ("excelente estado", "aparelho novo") */
.product-highlight{
  margin-top: 12px;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--silver);
}

/* Card 4 — rascunho aguardando informações */
.product-card.is-draft{
  border-style: dashed;
  border-color: rgba(166,255,30,0.22);
}
.product-card.is-draft .product-info h3,
.product-card.is-draft .product-price{ color: var(--silver); }
.product-media-empty{
  aspect-ratio: 3 / 4;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  line-height: 1.7;
  color: var(--silver-dim);
}
.product-media-empty{ flex-direction: column; gap: 8px; }
.product-media-empty code{
  color: var(--blue-light);
  font-size: 11px;
  display: block;
}

/* --------------------------------------------------------------------------
   SEÇÃO DE VÍDEO
   -------------------------------------------------------------------------- */
.video-section{
  display: grid;
  grid-template-columns: 1fr minmax(260px, 340px);
  gap: 48px;
  align-items: center;
  background: linear-gradient(180deg, var(--navy-2) 0%, var(--navy) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 44px;
}
.video-copy h2{
  margin-top: 14px;
  font-size: clamp(26px, 3.4vw, 34px);
}
.video-copy p{ margin-top: 14px; max-width: 46ch; }
.video-cta{ margin-top: 26px; }

.video-frame{
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--navy-3);
  box-shadow: var(--shadow-soft);
  line-height: 0;
}
.video-frame video{
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  background: #000;
}

.video-section > *{ min-width: 0; }

@media (max-width: 980px){
  .video-section{
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 32px 24px;
  }
  .video-frame{
    max-width: 380px;
    margin: 0 auto;
    width: 100%;
  }
  .video-copy p{ max-width: none; }
}

@media (max-width: 640px){
  .video-section{ padding: 26px 18px; border-radius: var(--radius-md); }
  .video-frame{ max-width: 100%; }
  /* botão do vídeo ocupa a largura toda e quebra o texto se precisar */
  .video-cta .btn{ width: 100%; white-space: normal; text-align: center; }
  /* área de toque confortável nos botões dos cards */
  .product-price-row{ flex-wrap: wrap; gap: 14px; }
  .product-price-row .btn-sm{ min-height: 44px; }
}

/* --------------------------------------------------------------------------
   CORREÇÕES DE RESPONSIVIDADE (bugs pré-existentes em telas estreitas)
   Em <=400px o header e o formulário ultrapassavam a largura da tela e ficavam
   com conteúdo cortado. Só afeta telas estreitas; nada muda em desktop/tablet.
   -------------------------------------------------------------------------- */

/* Impede que filhos de grid/flex estourem a largura pelo tamanho mínimo do conteúdo */
.form-section .container > *,
.form-grid-2 > *{ min-width: 0; }
.lead-form input,
.lead-form select,
.lead-form textarea{ max-width: 100%; min-width: 0; }

@media (max-width: 420px){
  .header .container{ gap: 10px; }
  .logo{ font-size: 17px; letter-spacing: 0.02em; }
  .header-actions .btn-whatsapp{ padding: 0 12px; font-size: 12.5px; gap: 6px; }
  .header-actions .btn-whatsapp svg{ width: 15px; height: 15px; }
}

/* Abaixo de 380px o texto do botão do header não cabe — mantém só o ícone,
   sem perder o acesso ao WhatsApp (o botão flutuante continua disponível). */
@media (max-width: 380px){
  .header-actions .btn-whatsapp{
    width: 40px; padding: 0; justify-content: center;
    font-size: 0; gap: 0;
  }
  .header-actions .btn-whatsapp svg{ width: 17px; height: 17px; }
}
