/* ===================== TOKENS ===================== */
:root {
  --verde:   #1A4833;
  --verde-light: #2a6649;
  --dourado: #C9A042;
  --dourado-dark: #b8902f;
  --bege:    #D4C4AB;
  --leite:   #FAFAF5;
  --texto:   #1a1a1a;
  --cinza:   #6b6b6b;
  --cinza-light: #f0ece6;
  --radius:  4px;
  --trans:   0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow:  0 4px 32px rgba(0,0,0,0.08);
}

/* ===================== RESET ===================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; max-width: 100%; }
body { font-family: 'Montserrat', sans-serif; background: var(--leite); color: var(--texto); overflow-x: hidden; max-width: 100%; }
img { display: block; width: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===================== TYPOGRAPHY ===================== */
h1, h2, h3, h4 { font-family: 'Cormorant Garamond', serif; font-weight: 400; line-height: 1.15; }
h1 { font-size: clamp(2.6rem, 5.5vw, 5rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 3.2rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.8rem); }
h4 { font-size: clamp(1.1rem, 1.5vw, 1.4rem); }
p  { line-height: 1.8; color: var(--cinza); font-size: 0.93rem; font-weight: 300; }

/* ===================== UTILS ===================== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section-tag {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--dourado); margin-bottom: 1rem;
}
.section-tag::before { content: ''; width: 28px; height: 1px; background: var(--dourado); }
.section-tag.light { color: rgba(255,255,255,0.6); }
.section-tag.light::before { background: rgba(255,255,255,0.4); }

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.9rem 2rem; border-radius: var(--radius);
  font-family: 'Montserrat', sans-serif; font-size: 0.78rem;
  font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  cursor: pointer; border: none; transition: var(--trans);
}
.btn-primary { background: var(--dourado); color: #fff; }
.btn-primary:hover { background: var(--dourado-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,160,66,0.35); }
.btn-outline { background: transparent; color: var(--verde); border: 1.5px solid var(--verde); }
.btn-outline:hover { background: var(--verde); color: #fff; }
.btn-outline-white { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.45); }
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: #fff; }
.btn-white { background: #fff; color: var(--verde); }
.btn-white:hover { background: var(--bege); }

/* ANIMATIONS */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
[data-reveal].visible { opacity: 1; transform: translateY(0); }
[data-reveal="left"]  { transform: translateX(-28px); }
[data-reveal="right"] { transform: translateX(28px); }
[data-reveal="left"].visible, [data-reveal="right"].visible { transform: translateX(0); opacity: 1; }

/* ===================== NAV ===================== */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  padding: 1.2rem 0;
  transition: background 0.4s, box-shadow 0.4s, padding 0.4s;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  will-change: transform;
  isolation: isolate;
}
nav.scrolled { background: var(--verde); box-shadow: 0 4px 24px rgba(0,0,0,0.18); padding: 0.75rem 0; }
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.nav-logo img { height: 38px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links > li { position: relative; }
.nav-links > li > a {
  font-size: 0.73rem; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(255,255,255,0.85);
  transition: color 0.3s; padding: 0.4rem 0;
  display: flex; align-items: center; gap: 0.3rem;
}
.nav-links > li > a:hover { color: var(--dourado); }
.nav-links > li > a { cursor: pointer; }
.nav-links > li > a svg { width: 10px; height: 10px; fill: currentColor; transition: transform 0.3s; }
.nav-links > li > a svg { transition: transform 0.3s; }
.dropdown.open ~ a svg, .nav-links > li:has(.dropdown.open) > a svg { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
  position: absolute; top: 100%; left: 50%;
  background: #fff; border-radius: var(--radius);
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
  min-width: 220px; padding: 0.6rem 0;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.2s, transform 0.2s, visibility 0s 0.2s;
  transform: translateX(-50%) translateY(-6px);
}
.dropdown.open {
  opacity: 1; visibility: visible; pointer-events: all;
  transform: translateX(-50%) translateY(0);
  transition: opacity 0.2s, transform 0.2s, visibility 0s;
}
.dropdown a {
  display: block; padding: 0.6rem 1.2rem;
  font-size: 0.8rem; color: var(--texto); font-weight: 500;
  transition: color 0.2s, background 0.2s;
}
.dropdown a:hover { color: var(--verde); background: var(--leite); }
.dropdown-divider { height: 1px; background: var(--cinza-light); margin: 0.4rem 0; }
.nav-cta {
  background: var(--dourado); color: #fff !important;
  padding: 0.9rem 2.2rem; border-radius: var(--radius);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.6rem !important; font-weight: 600 !important;
  letter-spacing: 0.12em; text-transform: uppercase;
  white-space: nowrap; transition: var(--trans);
  min-width: 180px; min-height: 44px;
  display: inline-flex !important; align-items: center; justify-content: center;
}
.nav-links > li > a.nav-cta { font-size: 0.6rem; }
.nav-cta:hover { background: var(--dourado-dark) !important; }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.nav-hamburger span { width: 22px; height: 2px; background: #fff; transition: var(--trans); }

/* ===================== HERO ===================== */
.hero {
  min-height: 100vh; position: relative;
  display: flex; align-items: center;
  background: var(--verde); overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.55;
  z-index: 0;
}
.hero-video {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  background-size: unset; background-position: unset;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(26,72,51,0.72) 0%, rgba(26,72,51,0.38) 100%);
}
.hero-deco {
  position: absolute; right: -80px; top: 50%; transform: translateY(-50%);
  width: 550px; height: 550px; border-radius: 50%;
  border: 1px solid rgba(201,160,66,0.18); z-index: 1;
}
.hero-deco::before {
  content: ''; position: absolute; inset: 55px;
  border-radius: 50%; border: 1px solid rgba(201,160,66,0.1);
}
.hero-content { position: relative; z-index: 2; max-width: 700px; }
.hero-content h1 { color: #fff; margin-bottom: 1.3rem; }
.hero-content h1 em { color: var(--dourado); font-style: italic; }
.hero-content p { color: rgba(255,255,255,0.72); font-size: 0.98rem; max-width: 500px; margin-bottom: 2.2rem; }

/* Hero split — texto + vídeo de oferta */
.hero-split { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 240px; align-items: center; gap: 3rem; }
.hero-text h1 { color: #fff; margin-bottom: 1.3rem; }
.hero-text h1 em { color: var(--dourado); font-style: italic; }
.hero-text p { color: rgba(255,255,255,0.72); font-size: 0.98rem; max-width: 480px; margin-bottom: 2.2rem; }
.hero-offer-video { display: flex; justify-content: center; }

/* Card de oferta */
.hero-offer-wrap {
  width: 220px;
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(201,160,66,0.35);
  border-radius: 16px;
  overflow: hidden;
  display: flex; flex-direction: column;
}
.offer-badge-top {
  background: var(--dourado);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  padding: 0.5rem 1rem;
}
.offer-video-box {
  position: relative;
  width: 100%;
  aspect-ratio: 9/16;
  overflow: hidden;
}
.offer-video-box video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.offer-bullets {
  display: flex; flex-direction: column; gap: 0.55rem;
  padding: 1rem 1.2rem 0.6rem;
}
.offer-bullet {
  display: flex; align-items: center; gap: 0.6rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.74rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.4;
}
.offer-bullet span { flex: 1; }
.offer-cta {
  display: block;
  margin: 0.6rem 1.2rem 1.2rem;
  background: var(--dourado);
  color: #fff;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  text-decoration: none;
  transition: opacity 0.2s;
}
.offer-cta:hover { opacity: 0.88; }

/* Vídeo copa — só mobile */
.copa-mobile-wrap { display: none; }
@media (max-width: 960px) {
  .copa-mobile-wrap {
    display: block;
    background: var(--leite);
    padding: 2rem 1.5rem;
  }
  .copa-mobile-inner {
    max-width: 360px;
    margin: 0 auto;
    background: #fff;
    border-radius: 16px;
    border: 1px solid rgba(201,160,66,0.3);
    padding: 1.2rem;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  }
  .copa-mobile-inner .offer-bullet { color: var(--texto); }
  .copa-mobile-inner .offer-bullet span { color: var(--texto); }
}

@media (max-width: 960px) {
  .hero-split { grid-template-columns: 1fr; }
  .hero-offer-video { display: none; }
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-scroll {
  position: absolute; bottom: 2.2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: rgba(255,255,255,0.45); font-size: 0.62rem; letter-spacing: 0.15em;
  text-transform: uppercase; z-index: 2; animation: bounce-scroll 2s infinite;
}
.hero-scroll::after { content: ''; width: 1px; height: 36px; background: rgba(255,255,255,0.25); }
@keyframes bounce-scroll {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(7px); }
}

/* PROOF STRIP — TICKER INFINITO */
.proof-strip { background: var(--dourado); padding: 0.95rem 0; overflow: hidden; }
.proof-ticker-wrap { overflow: hidden; width: 100%; }
.proof-ticker {
  display: flex;
  align-items: center;
  width: max-content;
  animation: proof-ticker-scroll 28s linear infinite;
  will-change: transform;
}
.proof-ticker:hover { animation-play-state: paused; }
@keyframes proof-ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.proof-item { display: flex; align-items: center; gap: 0.55rem; color: #fff; font-size: 0.78rem; font-weight: 500; white-space: nowrap; flex-shrink: 0; }
.proof-item strong { font-size: 1rem; font-weight: 700; }
.proof-sep { color: rgba(255,255,255,0.35); font-size: 0.65rem; margin: 0 2.2rem; flex-shrink: 0; user-select: none; }
/* mantém compatibilidade com código antigo */
.proof-strip-inner { display: flex; align-items: center; justify-content: center; gap: 2.5rem; flex-wrap: wrap; }
.proof-divider { width: 1px; height: 24px; background: rgba(255,255,255,0.3); }

/* ===================== SECTIONS ===================== */
.section-pad { padding: 7rem 0; }
.section-pad-sm { padding: 4rem 0; }
.bg-verde { background: var(--verde); }
.bg-bege { background: var(--bege); }
.bg-leite { background: var(--leite); }
.bg-white { background: #fff; }
.text-center { text-align: center; }

/* ===================== CARDS ===================== */
.cards-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.cards-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.split-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }

/* ===================== SERVICE CARDS (home) ===================== */
.service-cards-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5px;
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.08);
  border-radius: var(--radius); overflow: hidden;
}
.svc-card {
  position: relative; overflow: hidden;
  padding: 0; min-height: 320px;
  display: flex; flex-direction: column; justify-content: flex-end;
  cursor: pointer; transition: var(--trans);
}
.svc-card-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 0.6s ease;
}
.svc-card:hover .svc-card-bg { transform: scale(1.06); }
.svc-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,72,51,0.92) 0%, rgba(26,72,51,0.3) 60%, transparent 100%);
  transition: var(--trans);
}
.svc-card:hover .svc-card-overlay { background: linear-gradient(to top, rgba(26,72,51,0.97) 0%, rgba(26,72,51,0.5) 70%, rgba(26,72,51,0.1) 100%); }
.svc-card-body { position: relative; z-index: 2; padding: 2rem 1.8rem; }
.svc-card-icon { margin-bottom: 0.8rem; }
.svc-card-icon svg { width: 32px; height: 32px; fill: var(--dourado); }
.svc-card h3 { color: #fff; font-size: 1.25rem; margin-bottom: 0.5rem; }
.svc-card p { color: rgba(255,255,255,0.6); font-size: 0.82rem; line-height: 1.6; margin-bottom: 1.2rem; max-height: 0; overflow: hidden; transition: max-height 0.4s ease, margin 0.4s ease; }
.svc-card:hover p { max-height: 100px; }
.svc-card-link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--dourado);
  opacity: 0; transform: translateY(6px);
  transition: opacity 0.35s, transform 0.35s;
}
.svc-card:hover .svc-card-link { opacity: 1; transform: translateY(0); }

/* ===================== STEP PROCESS ===================== */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
.steps::before {
  content: ''; position: absolute;
  top: 2.8rem; left: calc(12.5% + 0.5rem); right: calc(12.5% + 0.5rem); height: 1px;
  background: linear-gradient(to right, var(--bege), var(--dourado), var(--bege));
}
.step { padding: 0 1.2rem; text-align: center; position: relative; }
.step-num {
  width: 3.2rem; height: 3.2rem; border-radius: 50%;
  border: 1.5px solid var(--dourado);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.3rem;
  font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; color: var(--dourado);
  background: #fff; position: relative; z-index: 2;
}
.step h3 { font-size: 1rem; color: var(--verde); margin-bottom: 0.6rem; }
.step p { font-size: 0.8rem; }

/* ===================== REVIEWS ===================== */
.reviews-wrap { overflow: hidden; }
.reviews-track {
  display: flex; gap: 1.4rem;
  animation: scroll-r 40s linear infinite;
  width: max-content;
}
.reviews-track:hover { animation-play-state: paused; }
@keyframes scroll-r {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.review-card {
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius); padding: 1.8rem;
  min-width: 330px; max-width: 330px;
}
.review-card:hover { background: rgba(255,255,255,0.12); }
.reviewer { display: flex; align-items: center; gap: 0.9rem; margin-bottom: 0.9rem; }
.reviewer-av {
  width: 40px; height: 40px; min-width: 40px; border-radius: 50%;
  background: var(--dourado); display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem; font-weight: 700; color: #fff;
}
.reviewer-name { font-size: 0.83rem; font-weight: 600; color: #fff; }
.reviewer-meta { font-size: 0.68rem; color: rgba(255,255,255,0.45); margin-top: 0.15rem; }
.stars { color: #f5c518; font-size: 0.85rem; margin-bottom: 0.7rem; letter-spacing: 2px; }
.review-text { font-size: 0.8rem; color: rgba(255,255,255,0.65); line-height: 1.75; font-style: italic; }
.review-src { font-size: 0.62rem; color: rgba(255,255,255,0.35); letter-spacing: 0.08em; text-transform: uppercase; margin-top: 1rem; }

/* ===================== FOOTER ===================== */
footer { background: var(--verde); padding: 4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-logo img { height: 32px; width: auto; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.8rem; color: rgba(255,255,255,0.5); line-height: 1.75; }
.footer-social { display: flex; gap: 0.8rem; margin-top: 1.3rem; }
.footer-social a {
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  transition: var(--trans); color: rgba(255,255,255,0.5);
}
.footer-social a:hover { border-color: var(--dourado); color: var(--dourado); }
.footer-social a svg { width: 14px; height: 14px; fill: currentColor; }
.footer-col h4 { font-size: 0.67rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.38); margin-bottom: 1.1rem; font-family: 'Montserrat', sans-serif; }
.footer-col li { margin-bottom: 0.6rem; }
.footer-col a { font-size: 0.8rem; color: rgba(255,255,255,0.58); transition: color 0.3s; }
.footer-col a:hover { color: var(--dourado); }
.footer-bottom { padding-top: 1.8rem; border-top: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { font-size: 0.72rem; color: rgba(255,255,255,0.3); }

/* ===================== WA FLOAT ===================== */
.wa-float {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 999;
  width: 54px; height: 54px; border-radius: 50%;
  background: #25D366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 18px rgba(37,211,102,0.45);
  transition: transform var(--trans), box-shadow var(--trans);
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 8px 28px rgba(37,211,102,0.55); }
.wa-float svg { width: 25px; height: 25px; fill: #fff; }

/* ===================== SUBPAGE HERO ===================== */
.subhero {
  padding: 9rem 0 5rem;
  background: var(--verde); position: relative; overflow: hidden;
}
.subhero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0.15; }
.subhero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, var(--verde) 50%, rgba(26,72,51,0.6) 100%); }
.subhero-content { position: relative; z-index: 2; max-width: 640px; }
.subhero-content h1 { color: #fff; font-size: clamp(2.2rem, 4vw, 3.8rem); margin-bottom: 1rem; }
.subhero-content h1 em { color: var(--dourado); font-style: italic; }
.subhero-content p { color: rgba(255,255,255,0.7); margin-bottom: 2rem; }
.breadcrumb { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1.5rem; }
.breadcrumb a, .breadcrumb span { font-size: 0.7rem; color: rgba(255,255,255,0.5); letter-spacing: 0.08em; }
.breadcrumb a:hover { color: var(--dourado); }
.breadcrumb .sep { color: rgba(255,255,255,0.3); }

/* ===================== FAQ ===================== */
.faq-item {
  border-bottom: 1px solid var(--bege);
  padding: 1.5rem 0;
}
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  cursor: pointer; font-weight: 600; font-size: 0.95rem; color: var(--verde);
  gap: 1rem;
}
.faq-q svg { min-width: 18px; width: 18px; height: 18px; fill: var(--dourado); transition: transform 0.3s; }
.faq-item.open .faq-q svg { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.open .faq-a { max-height: 300px; }
.faq-a p { padding-top: 1rem; }

/* ===================== PARCEIROS ===================== */
.parceiros { text-align: center; padding: 3.5rem 0; border-top: 1px solid var(--bege); }
.parceiros-label { font-size: 0.67rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--cinza); margin-bottom: 2rem; }
.parceiros-logos { display: flex; align-items: center; justify-content: center; gap: 4rem; flex-wrap: wrap; }
.parceiro { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 600; color: var(--bege); letter-spacing: 0.12em; transition: color 0.3s; }
.parceiro:hover { color: var(--verde); }

/* ===================== VIDEO PLAY/PAUSE BUTTON ===================== */
.bli-play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 62px; height: 62px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  transition: opacity 0.2s, background 0.2s;
}
.bli-play-btn .icon-pause { display: none; }
.bli-play-btn.playing .icon-play  { display: none; }
.bli-play-btn.playing .icon-pause { display: block; }
.bli-play-btn.playing { opacity: 0 !important; background: transparent !important; pointer-events: auto; }

/* ===================== CARROSSEL TRANSFORMAÇÕES ===================== */
.transf-track-wrap,
.tapete-track-wrap {
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.transf-track { display: flex; gap: 1.4rem; width: max-content; animation: transf-scroll 40s linear infinite; }
.transf-track:hover { animation-play-state: paused; }
@keyframes transf-scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

.tapete-track { display: flex; gap: 1.4rem; width: max-content; animation: tapete-scroll 20s linear infinite; }
.tapete-track:hover { animation-play-state: paused; }
@keyframes tapete-scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

.transf-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.10);
  transition: transform 0.3s, box-shadow 0.3s;
  background: #fff;
  flex: 0 0 340px;
}
.transf-card:hover { transform: translateY(-6px) scale(1.02); box-shadow: 0 20px 50px rgba(0,0,0,0.18); }
.transf-card img { display: block; width: 100%; height: auto; }
.transf-info { padding: 1rem 1.2rem 1.2rem; }
.transf-info h4 { font-size: 0.88rem; font-weight: 600; color: var(--verde); margin-bottom: 0.2rem; font-family: 'Montserrat', sans-serif; }
.transf-info p { font-size: 0.75rem; color: var(--cinza); line-height: 1.5; }
@media(max-width:600px){ .transf-card { flex: 0 0 260px; } }

/* ===================== RESPONSIVE ===================== */

/* Tablet (≤960px) */
@media (max-width: 960px) {
  .split-2 { grid-template-columns: 1fr; gap: 3rem; }
  .cards-grid-3, .service-cards-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .steps::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .section-pad { padding: 5rem 0; }
  .subhero { min-height: 420px !important; }

  /* Dropdown no mobile — inline, sem posição absoluta */
  .dropdown {
    position: static;
    transform: none;
    box-shadow: none;
    background: rgba(255,255,255,0.08);
    border-radius: var(--radius);
    min-width: unset;
    width: 100%;
    padding: 0.3rem 0;
    margin-top: 0.4rem;
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.2s, max-height 0.3s, visibility 0s 0.2s;
  }
  .dropdown.open {
    opacity: 1;
    visibility: visible;
    max-height: 300px;
    transform: none;
    transition: opacity 0.2s, max-height 0.3s, visibility 0s;
  }
  .dropdown a {
    color: rgba(255,255,255,0.85);
    font-size: 0.78rem;
    padding: 0.5rem 1rem;
  }
  .dropdown a:hover { background: rgba(255,255,255,0.08); color: var(--dourado); }
  .dropdown-divider { background: rgba(255,255,255,0.15); }
}

/* Badges flutuantes — esconde no mobile para evitar overflow horizontal */
@media (max-width: 960px) {
  .vid-float-badge { display: none !important; }
  .vid-float-wrap { overflow: hidden !important; margin-left: auto !important; margin-right: auto !important; }
}

/* Mobile (≤600px) */
@media (max-width: 600px) {
  .section-pad { padding: 3.5rem 0; }
  .section-pad-sm { padding: 2.5rem 0; }
  .container { padding: 0 1.2rem; }

  /* Grids */
  .cards-grid-3, .service-cards-grid, .cards-grid-2 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .proof-strip-inner { gap: 1.2rem; }
  .proof-divider { display: none; }

  /* Hero */
  .hero { min-height: 100svh; }
  .hero-split { gap: 2rem; }
  .hero-text h1 { font-size: clamp(2rem, 8vw, 3rem); }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; text-align: center; justify-content: center; }
  .hero-scroll { display: none; }

  /* Subhero */
  .subhero { min-height: 340px !important; padding: 6rem 0 3rem; }
  .subhero-content h1 { font-size: clamp(1.9rem, 7vw, 2.8rem); }

  /* Vídeos com bullets — esconde bullets fora da tela */
  .bli-bullet { display: none; }
  .blindagem-badge { display: none; }

  /* Blindagem section */
  .blindagem-img, .offer-video-box, [style*="max-width:300px"], [style*="max-width:320px"] {
    max-width: 220px !important;
  }

  /* Footer */
  footer { padding: 3rem 0 1.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; }

  /* Botões */
  .btn { padding: 0.85rem 1.5rem; font-size: 0.73rem; }
  .subhero-content .hero-actions { flex-direction: column; }
  .subhero-content .hero-actions .btn { width: 100%; text-align: center; justify-content: center; }
}

/* Phones pequenos (≤400px) */
@media (max-width: 400px) {
  .container { padding: 0 1rem; }
  .section-pad { padding: 3rem 0; }
  h1 { font-size: clamp(1.8rem, 9vw, 2.4rem); }
  h2 { font-size: clamp(1.5rem, 7vw, 2rem); }
  .subhero { padding: 5rem 0 2.5rem; }
}
