/* ============================================================
   SL Plastik — Landing Page (fiel ao export do Elementor)
   Fontes: Roboto (geral) + Poppins (botões verdes / contato)
   ============================================================ */
:root {
  --red: #D90429;
  --red-dark: #8D0019;
  --green: #25D366;
  --gray-bg: #F2F2F2;
  --ink: #1c1c1c;
  --title-gray: #54595F;
  --font-r: 'Roboto', Helvetica, Arial, sans-serif;
  --font-p: 'Poppins', Helvetica, Arial, sans-serif;
  --container: 1140px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html, body { overflow-x: hidden !important; }
body {
  font-family: var(--font-r);
  color: var(--ink);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; border: none; cursor: pointer; background: none; }

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

/* ---------- Entrada (scroll-topx do site original) ---------- */
.scroll-topx {
  opacity: 0;
  filter: blur(5px);
  transform: translateY(30px);
  transition: 0.9s;
}
.ativox {
  opacity: 1 !important;
  transition: 0.9s !important;
  filter: blur(0px) !important;
  transform: translateY(0px) !important;
}
.d-02 { transition-delay: 0.2s; }
.d-04 { transition-delay: 0.4s; }
.d-05 { transition-delay: 0.5s !important; }
.d-06 { transition-delay: 0.6s; }
.d-08 { transition-delay: 0.8s; }
.d-10 { transition-delay: 1.0s !important; }
.d-12 { transition-delay: 1.2s; }
.d-14 { transition-delay: 1.4s; }
.d-15 { transition-delay: 1.5s !important; }
@media (prefers-reduced-motion: reduce) {
  .scroll-topx { opacity: 1; filter: none; transform: none; transition: none; }
}

/* ---------- Botão verde (Poppins, glow no hover) ---------- */
.btn-green {
  display: inline-block;
  background: var(--green);
  color: #fff;
  font-family: var(--font-p);
  font-weight: 600;
  font-size: 20px;
  padding: 14px 34px;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.btn-green:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 20px 6px rgba(37, 211, 102, 0.55),
              0 0 40px 10px rgba(37, 211, 102, 0.25);
}
.btn-green:active { transform: translateY(0); box-shadow: none; }

/* ---------- Header (.menux — esconde ao rolar p/ baixo) ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  background: var(--red);
  transition: transform 1s;
}
.site-header .container {
  max-width: 1360px;
  display: flex;
  align-items: center;
  gap: 28px;
  height: 74px;
}
.header-logo { flex-shrink: 0; }
.header-logo img { height: 30px; width: auto; display: block; }
.main-nav { display: flex; align-items: center; gap: 26px; margin-left: 8px; }
.main-nav a {
  color: #fff;
  font-family: var(--font-r);
  font-size: 15px;
  font-weight: 500;
  position: relative;
  padding: 6px 0;
  white-space: nowrap;
}
.main-nav a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 100%;
  height: 2px;
  border-radius: 100px;
  transform: translate(-50%, -50%) scaleX(0);
  background: #FFFFFF;
  transition: 1s;
  transform-origin: left;
}
.main-nav a:hover::before { transform: translate(-50%, -50%) scaleX(1); }

/* ---------- Dropdown "Lacres" (desktop: abre no hover) ---------- */
.nav-dropdown { position: relative; display: flex; align-items: center; }
.nav-dropdown-toggle { display: inline-flex; align-items: center; gap: 6px; cursor: pointer; }
.nav-caret { display: inline-flex; transition: transform .3s ease; }
.nav-caret svg { width: 11px; height: 11px; display: block; }
.nav-dropdown:hover .nav-caret,
.nav-dropdown:focus-within .nav-caret { transform: rotate(180deg); }
.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 252px;
  background: #fff;
  border-radius: 12px;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .28s ease, transform .28s ease;
  box-shadow: 0 20px 44px rgba(0, 0, 0, .28);
  z-index: 60;
}
.nav-dropdown-menu::before { content: ''; position: absolute; top: -12px; left: 0; right: 0; height: 12px; }
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(6px);
}
.nav-dropdown-menu a {
  color: #333;
  padding: 11px 16px;
  border-radius: 8px;
  white-space: nowrap;
  font-size: 14px;
  transition: background .2s ease, color .2s ease;
}
.nav-dropdown-menu a::before { display: none; }
.nav-dropdown-menu a:hover { background: #f4f4f4; color: var(--red); }
.header-right { display: flex; align-items: center; gap: 16px; margin-left: auto; flex-shrink: 0; }
.header-iso { width: 44px; height: auto; cursor: pointer; transition: transform .3s; }
.header-iso:hover { transform: scale(1.08); }
.btn-whatsapp-menu {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--green);
  color: #ffffff;
  font-family: var(--font-p);
  font-size: 15px;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 8px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  white-space: nowrap;
}
.btn-whatsapp-menu:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 20px 6px rgba(37, 211, 102, 0.55),
              0 0 40px 10px rgba(37, 211, 102, 0.25);
}
.btn-whatsapp-menu:active { transform: translateY(0); box-shadow: none; }
.menu-toggle { display: none; color: #fff; font-size: 28px; line-height: 1; padding: 6px; transition: 0.5s; cursor: pointer; }
.menu-toggle:hover { transform: scale(0.9); }

@media (max-width: 1024px) {
  .site-header .container { gap: 14px; }
  .main-nav {
    display: none;
    position: absolute;
    top: 74px; left: 0; right: 0;
    background: var(--red);
    flex-direction: column;
    align-items: stretch;
    padding: 8px 24px 18px;
    gap: 0;
    box-shadow: 0 14px 24px rgba(0, 0, 0, .3);
    max-height: calc(100vh - 74px);
    overflow-y: auto;
  }
  .main-nav.open { display: flex; }
  .main-nav a {
    width: 100%;
    font-size: 16px;
    padding: 14px 2px;
    border-bottom: 1px solid rgba(255, 255, 255, .16);
  }
  .main-nav a:last-child { border-bottom: none; }
  .main-nav a::before { display: none; }
  .nav-dropdown { flex-direction: column; align-items: stretch; width: 100%; }
  .nav-dropdown-toggle { justify-content: space-between; }
  .nav-caret { display: none; }
  .nav-dropdown-menu {
    position: static; opacity: 1; visibility: visible; pointer-events: auto;
    transform: none; background: transparent; box-shadow: none;
    padding: 0; min-width: 0; border-radius: 0;
  }
  .nav-dropdown-menu::before { display: none; }
  .nav-dropdown-menu a { color: #fff; padding: 12px 2px 12px 20px; font-size: 15px; border-bottom: 1px solid rgba(255, 255, 255, .12); }
  .nav-dropdown-menu a:hover { background: transparent; color: #fff; }
  .menu-toggle { display: block; order: 3; margin-left: 4px; }
  .header-right { margin-left: auto; gap: 12px; }
  .header-iso { width: 40px; }
  .btn-whatsapp-menu { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: #3d3d3f url('../../uploads/2026/04/Fundo-Banner-Topo-1.webp') center center / cover no-repeat;
  min-height: 100vh;
  min-height: 100svh;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
  padding: calc(74px + clamp(6px, 1.5vh, 24px)) 24px clamp(12px, 2vh, 40px);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
}
.container-linhas { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.container-linhas div {
  position: absolute;
  top: 0%;
  left: 50%;
  width: 150px;
  height: 800px;
  background: linear-gradient(to top, transparent 5%, #2A2F36 90%);
  pointer-events: none;
  border-radius: 100px;
  filter: blur(60px);
}
.linhas1 { transform: translateX(-800px) translateY(-200px) rotate(-15deg); }
.linhas2 { transform: translateX(200px) translateY(-100px) rotate(-15deg); }
.linhas3 { transform: translateX(-400px) translateY(-100px) rotate(-15deg); }
.linhas4 { width: 160px !important; transform: translateX(700px) translateY(-200px) rotate(-15deg); }
@media (min-width: 1025px) and (max-width: 1550px) {
  .linhas1 { transform: translateX(-600px) translateY(-100px) rotate(25deg); }
  .linhas2 { transform: translateX(200px) translateY(-300px) rotate(25deg); }
  .linhas3 { transform: translateX(-250px) translateY(-300px) rotate(25deg); }
  .linhas4 { transform: translateX(500px) translateY(-100px) rotate(25deg); }
}
@media (min-width: 360px) and (max-width: 767px) {
  .container-linhas div { filter: blur(15px); width: 100px; }
  .linhas1 { transform: translateX(-300px) translateY(-200px) rotate(25deg); }
  .linhas2 { transform: translateX(20px) translateY(-200px) rotate(25deg); }
  .linhas3 { transform: translateX(-180px) translateY(-200px) rotate(25deg); }
  .linhas4 { transform: translateX(170px) translateY(-200px) rotate(25deg); filter: blur(25px); }
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 980px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0;
}
.hero h1 {
  font-size: clamp(32px, min(6vw, 7.5vh), 80px);
  font-weight: 600;
  letter-spacing: .01em;
  line-height: 1.1;
}
.hero-sub { margin-top: clamp(10px, 2vh, 56px); font-size: clamp(16px, min(1.5vw, 2.4vh), 24px); font-weight: 300; }
.hero-sub strong { font-weight: 700; }
.hero-line2 { margin-top: clamp(6px, 1.2vh, 30px); font-size: clamp(16px, min(1.5vw, 2.4vh), 24px); font-weight: 700; letter-spacing: .02em; }
.hero-cluster { margin: clamp(10px, 2vh, 40px) auto 0; width: min(620px, 78vw); max-height: min(32vh, 300px); object-fit: contain; }
@media (max-width: 767px) {
  .hero h1 { font-size: 45px; }
  .hero-sub, .hero-line2 { font-size: 18px; }
}

/* botão SAIBA MAIS — texto rolante no hover */
.btn-saiba {
  position: relative;
  display: inline-block;
  margin-top: clamp(12px, 2vh, 44px);
  background: var(--red);
  color: #fff;
  border-radius: 48px;
  padding: 10px 40px;
  font-family: var(--font-r);
  font-weight: 700;
  font-size: 24px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}
.btn-saiba .roll-a {
  display: block;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}
.btn-saiba .roll-b {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(100%);
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  pointer-events: none;
}
.btn-saiba:hover .roll-a { transform: translateY(-250%); }
.btn-saiba:hover .roll-b { transform: translateY(0); }

/* ---------- Títulos de seção ---------- */
.section-title {
  font-size: 80px;
  font-weight: 600;
  text-align: center;
  color: #000;
  line-height: 1.15;
}
@media (max-width: 767px) { .section-title { font-size: 45px; } }

/* ---------- Segmentos (bg Teste3.png com decor gigante) ---------- */
.segmentos {
  position: relative;
  background: #fff url('../../uploads/2026/04/Teste3.webp') center center / cover no-repeat;
  padding: 86px 0 92px;
  overflow: hidden;
}
.segmentos-sub { text-align: center; color: #7A7A7A; font-size: 20px; margin-top: 14px; }
.seg-grid {
  margin-top: 54px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px 30px;
}
.seg-grid img { width: 100%; transition: transform .35s; }
.seg-grid img:hover { transform: translateY(-6px); }
.seg-cta { text-align: center; margin-top: 70px; }
@media (max-width: 900px) { .seg-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .seg-grid { grid-template-columns: 1fr; max-width: 320px; margin-left: auto; margin-right: auto; } }

/* ---------- Produtos ---------- */
.produtos { background: var(--gray-bg); padding: 80px 0 90px; }
.cat-banner {
  background: var(--red);
  margin-top: 70px;
  padding: 16px 20px;
  text-align: center;
}
.cat-banner h3 {
  color: #fff;
  font-family: var(--font-r);
  font-size: 40px;
  font-weight: 600;
}
@media (max-width: 767px) { .cat-banner h3 { font-size: 36px; } }
.prod-grid {
  margin-top: 56px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 56px 44px;
}
.prod-item { width: 300px; display: flex; flex-direction: column; align-items: center; }
.prod-card {
  position: relative;
  width: 100%;
  background: #fff;
  border-radius: 20px;
  padding: 30px 16px 26px;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  transition: transform .35s, box-shadow .35s;
}
.prod-launch-badge {
  position: absolute;
  top: -13px;
  right: 16px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--red);
  color: #fff;
  font-family: var(--font-p);
  font-weight: 700;
  font-size: 11.5px;
  letter-spacing: .6px;
  text-transform: uppercase;
  padding: 6px 13px 6px 10px;
  border-radius: 100px;
  white-space: nowrap;
  box-shadow: 0 6px 16px rgba(217, 30, 38, .35);
  animation: launch-glow 2.6s ease-in-out infinite;
}
.prod-launch-badge svg { width: 13px; height: 13px; fill: #fff; flex: none; }
@keyframes launch-glow {
  0%, 100% { box-shadow: 0 6px 16px rgba(217, 30, 38, .35); }
  50% { box-shadow: 0 6px 22px rgba(217, 30, 38, .6); }
}
@media (prefers-reduced-motion: reduce) {
  .prod-launch-badge { animation: none; }
}
.prod-item:hover .prod-card { transform: translateY(-7px); box-shadow: 0 18px 34px rgba(0, 0, 0, .12); }
.prod-card h4 {
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  color: var(--title-gray);
  line-height: 1.3;
  padding: 0 12px;
  min-height: 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.prod-card h4 small { font-size: 16px; font-weight: 600; }
.prod-card .prod-img {
  margin-top: 22px;
  width: 100%;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.prod-card .prod-img img { max-height: 100%; max-width: 100%; object-fit: contain; transition: transform .4s; }
.prod-item:hover .prod-img img { transform: scale(1.06); }
.btn-detalhes {
  margin-top: 18px;
  width: 100%;
  background: var(--red);
  color: #FFFFFF;
  font-family: var(--font-r);
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: .5px;
  padding: 13px 24px;
  border-radius: 32px;
  transition: transform .3s;
}
.btn-detalhes:hover { transform: scale(1.04); }
.prod-cta { text-align: center; margin-top: 70px; }

/* ---------- Faixa fábrica (vídeo YouTube de fundo) ---------- */
.factory {
  position: relative;
  min-height: 750px;
  background: url('../img/factory.webp') center / cover no-repeat;
  overflow: hidden;
}
.factory iframe {
  position: absolute;
  top: 50%; left: 50%;
  width: max(100vw, 178vh);
  height: max(56.25vw, 100.2vh);
  transform: translate(-50%, -50%);
  pointer-events: none;
  border: 0;
}
@media (max-width: 767px) { .factory { min-height: 420px; } }

/* ---------- Sobre nós ---------- */
.sobre {
  position: relative;
  background: #fff url('https://antunesbueno.com.br/slplastik/wp-content/uploads/2026/02/Banner-Topo-Segmentos.png') center center / cover no-repeat;
  padding: 100px 0 110px;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.sobre::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.9);
}
.sobre .container { position: relative; z-index: 2; width: 100%; }
.sobre .section-title { text-align: left; }
.sobre-text { margin-top: 38px; max-width: 1060px; color: #555; font-size: 18px; line-height: 1.75; }
.sobre-text p + p { margin-top: 26px; }

/* ---------- Nosso propósito ---------- */
.proposito {
  position: relative;
  color: #fff;
  background: #b40e1e url('https://antunesbueno.com.br/slplastik/wp-content/uploads/2026/02/Background-Visao-Missao-e-Valores.png') center center / cover no-repeat;
  padding: 96px 0 110px;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.proposito::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
}
.proposito .container { position: relative; z-index: 2; width: 100%; }
.proposito .section-title { color: #fff; }
.proposito-blocks { margin-top: 70px; display: grid; gap: 44px; }
.proposito-blocks h3 { font-size: 40px; font-weight: 600; }
.proposito-blocks p { margin-top: 8px; font-size: 20px; line-height: 1.55; }
@media (max-width: 767px) { .proposito-blocks h3 { font-size: 30px; } }

/* ---------- Nossos clientes ---------- */
.clientes { background: #fff; padding: 96px 0 100px; }
.clientes-track-wrap { margin-top: 64px; overflow: hidden; position: relative; }
.clientes-track-wrap::before,
.clientes-track-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 90px;
  z-index: 2;
  pointer-events: none;
}
.clientes-track-wrap::before { left: 0; background: linear-gradient(90deg, #fff, transparent); }
.clientes-track-wrap::after { right: 0; background: linear-gradient(-90deg, #fff, transparent); }
.clientes-track {
  display: flex;
  align-items: center;
  gap: 110px;
  width: max-content;
  animation: marquee 32s linear infinite;
}
.clientes-track:hover { animation-play-state: paused; }
.clientes-track img { height: 120px; width: auto; max-width: 240px; object-fit: contain; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Diferenciais (bg 1801_Bg_Form + reflexo) ---------- */
.diferenciais { background: #fff; padding: 30px 0 96px; }
.dif-grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 400px));
  justify-content: center;
  gap: 24px;
}
.dif-card {
  position: relative;
  color: #fff;
  border-radius: 26px;
  padding: 44px 34px 40px;
  text-align: center;
  background: #2e040a url('https://antunesbueno.com.br/slplastik/wp-content/uploads/2026/02/1801_Bg_Form-scaled.jpg') center center / cover no-repeat;
  overflow: hidden;
  transition: transform .35s, box-shadow .35s;
}
.dif-card:hover { transform: translateY(-6px); box-shadow: 0 20px 38px rgba(90, 5, 17, .45); }
.dif-card img {
  position: relative;
  z-index: 2;
  height: 96px;
  width: auto;
  margin: 0 auto 26px;
  filter: brightness(0) invert(1);
}
.dif-card p { position: relative; z-index: 2; font-size: 25px; font-weight: 700; line-height: 1.45; }
.dif-cta { text-align: center; margin-top: 56px; }
@media (max-width: 760px) { .dif-grid { grid-template-columns: minmax(0, 400px); } }

/* reflexo — brilho varrendo o card (igual ao original) */
.reflexo { overflow: hidden; }
.reflexo::before {
  content: "";
  position: absolute;
  left: 0%;
  width: 150px;
  height: 300%;
  top: -100%;
  filter: blur(20px);
  background: linear-gradient(to right, transparent 1%, #fff 40%, #fff 60%, transparent 100%);
  pointer-events: none;
  mix-blend-mode: screen;
  transform: rotate(20deg);
  animation: reflexo 5s linear infinite;
}
@keyframes reflexo {
  from { transform: rotate(20deg) translateX(-300%); }
  to { transform: rotate(20deg) translateX(300%); }
}

/* ---------- Brilho (transição diferenciais → contato, GSAP scrub) ---------- */
.brilho2 { background: #fff; line-height: 0; }
.brilho {
  width: 100%;
  transform: translateY(5px) scaleY(0.2) translateZ(0px) scale(1);
  transform-origin: bottom;
  will-change: transform;
}

/* ---------- Contato ---------- */
.contato {
  position: relative;
  background: #000;
  padding: 60px 0 150px;
  color: #fff;
  overflow: hidden;
}
.contato-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 70px;
  align-items: center;
}
.contato-copy h2 {
  font-family: var(--font-p);
  font-weight: 800;
  font-size: 29px;
  letter-spacing: .01em;
}
.contato-copy .contato-sub {
  margin-top: 26px;
  font-family: var(--font-p);
  font-weight: 300;
  font-size: 40px;
  letter-spacing: .02em;
}
.box-destaque {
  margin-top: 56px;
  background-color: #FFFFFF;
  color: var(--red);
  border-radius: 50px;
  padding: 12px 50px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
  font-family: var(--font-p);
  line-height: 1.3;
  text-align: center;
  display: inline-block;
  width: auto;
  max-width: 100%;
}
.box-destaque .texto-grosso { font-weight: 900 !important; }
@media (max-width: 767px) {
  .box-destaque { font-size: 12px; padding: 15px 25px; line-height: 1.4; width: 100%; display: block; }
  .contato-copy h2 { font-size: 24px; }
  .contato-copy .contato-sub { font-size: 28px; }
}

.form-card {
  background: var(--red);
  border-radius: 60px;
  padding: 40px;
  width: 90%;
  margin: 0 auto;
}
.form-card label {
  display: block;
  font-family: var(--font-r);
  font-weight: 700;
  font-size: 17px;
  color: #FFFFFF;
  margin: 0 0 11px;
}
.form-card label span { font-weight: 600; margin-left: 6px; }
.form-card input {
  width: 100%;
  border: 1px solid var(--red);
  outline: none;
  background: #ffffff;
  border-radius: 25px;
  height: 45px;
  line-height: 45px;
  padding: 0 20px;
  font-family: var(--font-r);
  font-size: 16px;
  color: #333;
  box-shadow: none;
  margin-bottom: 15px;
  transition: box-shadow .3s;
}
.form-card input:focus { box-shadow: 0 0 0 4px rgba(255, 255, 255, .35); }
.form-card .btn-enviar {
  width: 100%;
  margin-top: 15px;
  background: var(--green);
  color: #FFFFFF;
  font-family: var(--font-p);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: .05em;
  text-transform: uppercase;
  border-radius: 50px;
  height: 55px;
  padding: 0;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.form-card .btn-enviar:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 20px 6px rgba(37, 211, 102, 0.55);
}
.form-msg { margin-top: 18px; font-family: var(--font-r); font-weight: 600; font-size: 15px; display: none; }
.form-msg.show { display: block; }
@media (max-width: 980px) {
  .contato-inner { grid-template-columns: 1fr; gap: 56px; }
  .contato-copy { text-align: center; }
}
@media (max-width: 767px) {
  .form-card { width: 100%; min-width: 100%; padding: 30px; box-sizing: border-box; }
  .form-card input { height: 40px; line-height: 40px; font-size: 14px; border-radius: 20px; }
  .form-card .btn-enviar { height: 45px; font-size: 16px; }
}

/* ---------- Footer ---------- */
.site-footer { background: var(--red); color: #fff; padding: 56px 0 0; }
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 48px;
}
.footer-left { display: flex; flex-direction: column; gap: 20px; max-width: 520px; }
.footer-right { display: flex; flex-direction: column; align-items: flex-end; gap: 22px; }
.footer-brand img { height: 46px; width: auto; }
.footer-info { font-size: 15px; line-height: 1.8; max-width: 480px; }
.footer-info hr { border: none; border-top: 1px solid rgba(255,255,255,.4); margin: 10px 0; }
.footer-badges { display: flex; align-items: center; gap: 22px; }
.footer-badges img { height: 74px; width: auto; }
.footer-badges .footer-iso { cursor: pointer; transition: transform .3s; }
.footer-badges .footer-iso:hover { transform: scale(1.07); }
.footer-social { display: flex; gap: 14px; }
.footer-social svg { width: 20px; height: 20px; fill: #fff; }
.footer-social a[aria-label="WhatsApp"] svg { width: 22px; height: 22px; }

/* ---------- Botão "Avalie nosso atendimento" (rodapé) ---------- */
.footer-review {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  background: #fff;
  color: #1c1c1c;
  padding: 11px 20px;
  border-radius: 50px;
  font-family: var(--font-p);
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: .2px;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(0, 0, 0, .28);
  transition: transform .25s ease, box-shadow .25s ease;
}
.footer-review:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(0, 0, 0, .4); }
.footer-review-stars { display: inline-flex; gap: 2px; }
.footer-review-stars svg { width: 15px; height: 15px; fill: #FFB400; display: block; }
.footer-review-text { white-space: nowrap; }
.footer-social a {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .16);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .3s, transform .3s;
}
.footer-social a:hover { background: rgba(255, 255, 255, .32); transform: translateY(-3px); }
.footer-social svg { width: 20px; height: 20px; fill: #fff; }
.footer-credit {
  background: var(--red-dark);
  text-align: center;
  padding: 16px 24px;
  font-size: 17px;
  color: #FFFFFF;
}

/* ---------- WhatsApp flutuante (igual ao original) ---------- */
.btn-whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  background-color: var(--green);
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  animation: pulse 2s infinite;
}
.btn-whatsapp-float svg { width: 30px; height: 30px; fill: #ffffff; transition: transform 0.3s ease; }
.btn-whatsapp-float:hover { transform: scale(1.12); box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45); }
.btn-whatsapp-float:hover svg { transform: rotate(10deg); }
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
  70%  { box-shadow: 0 0 0 12px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ---------- Popup produto (off-canvas: fadeIn 0.5s, 60% largura) ---------- */
.popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, .62);
  display: none;
  opacity: 0;
  transition: opacity .5s;
}
.popup-overlay.open { display: block; opacity: 1; }
.popup-modal {
  position: fixed;
  z-index: 1001;
  top: 10px;
  bottom: 10px;
  left: 50%;
  width: min(60vw, 860px);
  background: #fff;
  border-radius: 24px;
  display: none;
  flex-direction: column;
  overflow: hidden;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity .5s;
}
@media (max-width: 980px) { .popup-modal { width: 90vw; } }
.popup-modal.open { display: flex; }
.popup-modal.in { opacity: 1; }
.popup-close {
  position: absolute;
  top: 16px; right: 18px;
  z-index: 5;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: #f1f1f1;
  color: #444;
  font-size: 20px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .3s, transform .3s;
}
.popup-close:hover { background: var(--red); color: #fff; transform: rotate(90deg); }
.popup-scroll { overflow-y: auto; flex: 1; padding: 34px 38px 44px; }

/* carrossel do popup */
.pcar { position: relative; height: 360px; padding: 1em 0; overflow: hidden; }
.pcar-track { position: absolute; inset: 0; }
.pcar-slide {
  position: absolute;
  top: 0;
  left: 50%;
  width: 56%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .5s, opacity .5s, filter .5s;
  opacity: 0;
  pointer-events: none;
}
.pcar-slide img { max-width: 100%; max-height: 86%; object-fit: contain; }
.pcar-slide.is-center { transform: translateX(-50%) scale(1.05); opacity: 1; filter: none; z-index: 2; }
.pcar-slide.is-prev { transform: translateX(-125%) scale(0.7); opacity: .7; filter: blur(8px); z-index: 1; }
.pcar-slide.is-next { transform: translateX(25%) scale(0.7); opacity: .7; filter: blur(8px); z-index: 1; }
.pcar-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 48px; height: 48px;
  border-radius: 50px;
  background: rgba(255, 255, 255, .35);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  outline: 2px solid #000;
  font-size: 18px;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .3s, color .3s;
}
.pcar-arrow:hover { background: #111; color: #fff; }
.pcar-prev { left: calc(50% - 36%); }
.pcar-next { right: calc(50% - 36%); }
.pcar.single .pcar-arrow { display: none; }
@media (max-width: 640px) {
  .pcar { height: 250px; }
  .pcar-arrow { width: 34px; height: 34px; font-size: 13px; }
  .pcar-prev { left: 2%; }
  .pcar-next { right: 2%; }
}

/* abas do popup */
.ptabs { position: relative; z-index: 3; margin-top: 24px; display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.ptab {
  font-family: var(--font-r);
  font-weight: 500;
  font-size: 15px;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: 100px;
  background: #f1f1f1;
  color: var(--red);
  transition: all 0.4s ease-in-out;
}
.ptab:hover {
  transform: scale(0.95);
  background: var(--red);
  color: #fff;
}
.ptab.active {
  background: var(--red);
  color: #fff;
}
.ptab.active:hover { box-shadow: 0px 0px 150px 0px var(--red); transform: translateY(-10px); }
.ptab-content { position: relative; z-index: 3; margin-top: 34px; animation: abas 1s ease-in-out; }
@keyframes abas {
  0% { filter: blur(15px); transform: translateY(100px); opacity: 0; }
  100% { filter: blur(0px); transform: translateY(0px); opacity: 1; }
}
.ptab-content h3 {
  font-family: var(--font-r);
  font-weight: 600;
  color: var(--red);
  font-size: 57px;
  line-height: 1.1;
}
.ptab-content .ptab-body { margin-top: 20px; color: var(--red); font-size: 20px; line-height: 1.5; }
@media (max-width: 767px) {
  .ptab { font-size: 13px; padding: 5px 10px; min-width: 30%; max-width: 30%; }
  .ptab-content h3 { font-size: 32px; }
  .popup-scroll { padding: 26px 18px 36px; }
}

/* popup ISO */
.iso-modal {
  position: fixed;
  z-index: 1001;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  width: min(560px, calc(100vw - 32px));
  max-height: calc(100vh - 40px);
  background: #fff;
  border-radius: 24px;
  padding: 26px;
  display: none;
  flex-direction: column;
  align-items: center;
  overflow-y: auto;
  transition: opacity .5s;
}
.iso-modal.open { display: flex; }
.iso-modal.in { opacity: 1; }
.iso-modal img { max-height: 72vh; width: auto; }

::selection { background: var(--red); color: #fff; }
.popup-scroll::-webkit-scrollbar { width: 8px; }
.popup-scroll::-webkit-scrollbar-thumb { background: #ccc; border-radius: 8px; }

@media (max-width: 640px) {
  .footer-inner { flex-direction: column; align-items: center; text-align: center; }
  .footer-left { align-items: center; }
  .footer-info { max-width: none; }
  .footer-right { align-items: center; }
  .footer-badges { justify-content: center; }
  .footer-social { justify-content: center; }
}
