*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { overflow-x: hidden; }

:root {
  --yellow: #FFD600;
  --yellow-dark: #E6C000;
  --black: #111111;
  --dark: #1C1C1C;
  --gray: #F4F4F4;
  --gray2: #E8E8E8;
  --text: #222222;
  --text2: #666666;
  --white: #FFFFFF;
  --font: 'Inter', sans-serif;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }
body { font-family: var(--font); background: var(--white); color: var(--text); overflow-x: hidden; line-height: 1.6; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--gray); }
::-webkit-scrollbar-thumb { background: var(--yellow); border-radius: 3px; }

/* ===== HEADER ===== */
header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: 70px; padding: 0 6%;
  display: flex; align-items: center; justify-content: space-between;
  background: transparent;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
header.scrolled {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.08);
}
.logo { display: flex; align-items: center; gap: 12px; }
.logo-box {
  width: 40px; height: 40px; background: var(--yellow); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 13px; color: var(--black); letter-spacing: -0.5px;
}
.logo-name { font-size: 14px; font-weight: 700; line-height: 1.25; color: var(--black); }
.logo-name span { color: #888; font-weight: 500; }
nav { display: flex; align-items: center; gap: 36px; }
nav a {
  font-size: 14px; font-weight: 500; color: var(--white);
  transition: color 0.3s; position: relative;
}
header.scrolled nav a { color: var(--text); }
nav a:hover { color: var(--yellow) !important; }
.nav-cta {
  background: var(--yellow); color: var(--black) !important;
  padding: 10px 22px; border-radius: 8px; font-weight: 700; font-size: 13px;
  transition: all 0.3s var(--ease) !important;
}
.nav-cta:hover { background: var(--yellow-dark) !important; transform: translateY(-1px); box-shadow: 0 6px 18px rgba(255,214,0,0.35); }

/* ===== HERO ===== */
#hero {
  min-height: calc(100vh - 70px);
  background: var(--black);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}

@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

/* ===== HERO VIDEO BG ===== */
.hero-video-bg {
  position: absolute; inset: 0;
  overflow: hidden; z-index: 0;
  pointer-events: none;
}
.hero-video-bg iframe {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 177.78vh;  /* 16:9 mantendo altura */
  height: 56.25vw;  /* 16:9 mantendo largura */
  min-width: 100%; min-height: 100%;
  border: none;
  opacity: 0.5;
}

/* Hero gradient — overlay escuro sobre o vídeo */
.hero-gradient {
  position: absolute; inset: 0; z-index: 1;
  background:
    rgba(0, 0, 0, 0.80),
    radial-gradient(ellipse 70% 80% at 30% 50%, rgba(255,214,0,0.05) 0%, transparent 65%);
}

.hero-inner {
  position: relative; z-index: 2; /* above video + overlay */
  padding: 72px 32px 0;
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  display: flex; flex-direction: column; align-items: center;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1.5px solid rgba(255,214,0,0.35); border-radius: 100px;
  padding: 6px 16px; font-size: 11px; font-weight: 700;
  color: var(--yellow); letter-spacing: 1px; text-transform: uppercase;
  margin-bottom: 22px;
  animation: fadeUp 0.7s ease 0.1s forwards;
}
.badge-dot {
  width: 6px; height: 6px; background: var(--yellow); border-radius: 50%;
  animation: blink 2s infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }

#hero h1 {
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  font-weight: 900; line-height: 1.12; color: #FFFFFF !important;
  margin-bottom: 20px;
}
#hero h1 strong { color: var(--yellow) !important; font-weight: 900; }

.hero-sub {
  font-size: 1rem; color: rgba(255,255,255,0.75) !important;
  max-width: 520px; line-height: 1.6; margin-bottom: 28px;
}

.hero-btns {
  display: flex; gap: 14px; flex-wrap: wrap; justify-content: center;
  animation: fadeUp 0.8s ease 0.4s forwards;
}
.btn-yellow {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--yellow); color: var(--black);
  padding: 12px 26px; border-radius: 10px; font-size: 15px; font-weight: 800;
  transition: all 0.3s var(--ease); border: none; cursor: pointer;
}
.btn-yellow:hover { background: var(--yellow-dark); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(255,214,0,0.35); }
.btn-outline-w {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; color: var(--white);
  padding: 12px 26px; border-radius: 10px; font-size: 15px; font-weight: 600;
  border: 1.5px solid rgba(255,255,255,0.2); transition: all 0.3s var(--ease); cursor: pointer;
}
.btn-outline-w:hover { border-color: var(--yellow); color: var(--yellow); transform: translateY(-2px); }

/* Hero stats */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 24px;
  width: 100%;
  max-width: 480px;
  animation: fadeUp 0.8s ease 0.55s forwards;
}
.hstat {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  padding: 12px 10px; text-align: center;
  transition: all 0.3s var(--ease);
}
.hstat:first-child { border-radius: 14px 4px 4px 14px; }
.hstat:last-child  { border-radius: 4px 14px 14px 4px; }
.hstat:hover { background: rgba(255,214,0,0.06); border-color: rgba(255,214,0,0.2); transform: translateY(-4px); }
.hstat-num { font-size: 1.6rem; font-weight: 900; color: var(--yellow); line-height: 1; margin-bottom: 3px; }
.hstat-label { font-size: 9px; font-weight: 600; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.6px; }

/* Scroll cue */
.scroll-cue {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  color: rgba(255,255,255,0.25); font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase;
  animation: fadeUp 1s ease 1s forwards; z-index: 2;
}
.scroll-mouse {
  width: 22px; height: 36px; border: 1.5px solid rgba(255,255,255,0.15); border-radius: 11px; position: relative;
}
.scroll-mouse::after {
  content: ''; position: absolute; top: 5px; left: 50%; transform: translateX(-50%);
  width: 3px; height: 7px; background: var(--yellow); border-radius: 2px;
  animation: scrollDrop 1.5s ease infinite;
}
@keyframes scrollDrop { 0%{top:5px;opacity:1} 100%{top:18px;opacity:0} }

/* ===== MARQUEE BAND ===== */
.marquee-band {
  background: var(--yellow);
  padding: 22px 0;
  overflow: hidden;
  position: relative;
  user-select: none;
}
.marquee-track {
  display: flex;
  width: max-content;
  will-change: transform;
}
.marquee-item {
  display: flex; align-items: center; gap: 14px;
  padding: 0 40px;
  font-size: 16px; font-weight: 800;
  color: var(--black); white-space: nowrap;
  text-transform: uppercase; letter-spacing: 0.5px;
}
.marquee-sep { width: 6px; height: 6px; background: var(--black); border-radius: 50%; opacity: 0.25; flex-shrink: 0; }

/* ===== SECTION BASE ===== */
section { padding: 100px 6%; }

/* ===== CONTAINER ===== */
.sobre-grid, .srv-header, .srv-grid,
.marcas-head, .brands-grid, .autorizada-strip,
.dif-grid, .depo-head, .depo-grid,
.cta-inner, .contato-grid,
.footer-grid, .footer-bottom {
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
}

.tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; color: #999;
  text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 16px;
}
.tag::before { content: ''; width: 20px; height: 2px; background: var(--yellow); flex-shrink: 0; }
.sec-title {
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  font-weight: 800; line-height: 1.15; margin-bottom: 16px; color: var(--black);
}
.sec-title em { font-style: normal; color: var(--yellow); }
.sec-desc { font-size: 1.05rem; color: var(--text2); line-height: 1.75; max-width: 520px; }

/* ===== SOBRE ===== */
#sobre { background: var(--white); }

/* Esta classe garante que fique lado a lado no PC */
.sobre-grid {
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  gap: 72px; 
  align-items: center;
}

.photo-area {
  position: relative;
  width: 100%;
}

.photo-wrapper {
  width: 100%; 
  aspect-ratio: 4/3; /* Mantém a imagem em um formato retangular bonito */
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  position: relative;
}

.loja-img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Evita que a imagem fique esticada ou achatada */
  display: block;
  transition: transform 0.6s var(--ease);
}

.photo-area:hover .loja-img {
  transform: scale(1.05); /* Efeito de zoom suave ao passar o mouse */
}

/* Selo amarelo flutuante */
.photo-badge {
  position: absolute; 
  bottom: -20px; 
  right: -20px;
  background: var(--yellow); 
  border-radius: 14px; 
  padding: 20px 28px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
  text-align: center;
  z-index: 2;
  transition: transform 0.3s var(--ease);
}

.photo-area:hover .photo-badge {
  transform: translateY(-4px);
}

.photo-badge-num { font-size: 2rem; font-weight: 900; color: var(--black); line-height: 1; }
.photo-badge-txt { font-size: 11px; font-weight: 700; color: var(--black); opacity: 0.7; text-transform: uppercase; letter-spacing: 0.5px; }

/* Características (Ícones com texto) */
.sobre-features { display: flex; flex-direction: column; gap: 14px; margin-top: 36px; }
.feat {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 18px 20px; border-radius: 12px;
  border: 1.5px solid var(--gray2);
  transition: all 0.3s var(--ease);
}
.feat:hover { border-color: var(--yellow); transform: translateX(5px); background: #FFFDE7; }
.feat-icon {
  width: 40px; height: 40px; background: var(--yellow);
  border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.feat-icon svg { width: 20px; height: 20px; }
.feat h4 { font-size: 14px; font-weight: 700; color: var(--black); margin-bottom: 3px; }
.feat p { font-size: 13px; color: var(--text2); line-height: 1.5; }

/* ===== SERVIÇOS ===== */
#servicos {
  background: var(--black);
  position: relative; overflow: hidden;
}

#servicos .tag { color: rgba(255,255,255,0.4); }
#servicos .sec-title { color: var(--white); }
#servicos .sec-desc { color: rgba(255,255,255,0.5); }

.srv-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 60px; gap: 24px; position: relative; z-index: 1;
}

.btn-outline-y {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1.5px solid rgba(255,214,0,0.3); color: var(--yellow);
  padding: 12px 24px; border-radius: 8px; font-size: 13px; font-weight: 600;
  transition: all 0.3s var(--ease);
}
.btn-outline-y:hover { background: var(--yellow); color: var(--black); border-color: var(--yellow); transform: translateY(-2px); }

.srv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; position: relative; z-index: 1; }

.srv-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px; padding: 36px 28px;
  transition: all 0.3s var(--ease); cursor: default;
}
.srv-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,214,0,0.25);
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(0,0,0,0.4);
}
.srv-card.active {
  background: var(--yellow); border-color: var(--yellow);
}
.srv-card.active * { color: var(--black) !important; }
.srv-card.active .srv-icon { background: rgba(0,0,0,0.1); }
.srv-card.active:hover { background: var(--yellow-dark); border-color: var(--yellow-dark); box-shadow: 0 24px 48px rgba(255,214,0,0.2); }

.srv-icon {
  width: 52px; height: 52px; background: rgba(255,214,0,0.12);
  border-radius: 13px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px; transition: all 0.3s var(--ease);
}
.srv-icon svg { width: 24px; height: 24px; }
.srv-card:not(.active) .srv-icon svg { color: var(--yellow); }
.srv-card:not(.active):hover .srv-icon { background: rgba(255,214,0,0.18); }

.srv-card h3 { font-size: 1.15rem; font-weight: 800; color: var(--white); margin-bottom: 12px; }
.srv-card p { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.65; margin-bottom: 22px; }

.srv-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.stag {
  font-size: 11px; font-weight: 600;
  padding: 4px 10px; border-radius: 100px;
  background: rgba(255,214,0,0.1); color: var(--yellow);
  border: 1px solid rgba(255,214,0,0.2);
}
.srv-card.active .stag { background: rgba(0,0,0,0.1); color: var(--black); border-color: rgba(0,0,0,0.15); }

/* ===== MARCAS ===== */
#marcas { background: var(--white); padding: 80px 6%; }
#marcas .tag { justify-content: center; }
#marcas .tag::before { display: none; }
.marcas-head { text-align: center; margin-bottom: 52px; }
.marcas-head .sec-desc { margin: 0 auto; }

.brands-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
  margin-bottom: 40px;
}
.brand-card {
  border: 1.5px solid var(--gray2); border-radius: 14px;
  padding: 28px 20px; text-align: center;
  transition: all 0.3s var(--ease); cursor: default;
}
.brand-card:hover {
  border-color: var(--yellow);
  background: #FFFDE7;
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(255,214,0,0.15);
}
.brand-icon { width: 40px; height: 40px; background: var(--gray); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin: 0 auto 12px; }
.brand-icon svg { width: 20px; height: 20px; color: #888; }
.brand-card:hover .brand-icon { background: var(--yellow); }
.brand-card:hover .brand-icon svg { color: var(--black); }
.brand-name { font-size: 13px; font-weight: 800; color: var(--black); text-transform: uppercase; letter-spacing: 0.5px; }
.brand-type { font-size: 11px; color: #aaa; margin-top: 2px; }

.autorizada-strip {
  background: var(--yellow); border-radius: 14px; padding: 22px 32px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.aut-left { display: flex; align-items: center; gap: 16px; }
.aut-icon { width: 44px; height: 44px; background: rgba(0,0,0,0.1); border-radius: 10px; display: flex; align-items: center; justify-content: center; }
.aut-icon svg { width: 22px; height: 22px; color: var(--black); }
.aut-text strong { display: block; font-size: 15px; font-weight: 800; color: var(--black); }
.aut-text span { font-size: 12px; color: rgba(0,0,0,0.6); }
.aut-badge { background: var(--black); color: var(--yellow); padding: 8px 18px; border-radius: 8px; font-size: 12px; font-weight: 700; white-space: nowrap; }

/* ===== DIFERENCIAIS ===== */
#diferenciais {
  background: var(--gray);
  position: relative; overflow: hidden;
}
#diferenciais::before {
  content: '⚙';
  position: absolute;
  font-size: 560px; line-height: 1;
  right: -140px; top: 50%;
  transform: translateY(-50%);
  color: rgba(0,0,0,0.05);
  animation: spin 70s linear infinite;
  pointer-events: none;
  z-index: 0;
}
.dif-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; position: relative; z-index: 1; }

.dif-list { display: flex; flex-direction: column; gap: 8px; margin-top: 36px; }
.dif-item {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 20px; border-radius: 12px;
  background: var(--white); border: 1.5px solid transparent;
  transition: all 0.3s var(--ease);
}
.dif-item:hover { border-color: var(--yellow); transform: translateX(6px); box-shadow: 0 4px 16px rgba(0,0,0,0.06); }
.dif-check {
  width: 30px; height: 30px; background: var(--yellow); border-radius: 8px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.dif-check svg { width: 14px; height: 14px; color: var(--black); }
.dif-item span { font-size: 14px; font-weight: 500; color: var(--text); }

/* Visual side */
.dif-visual { display: flex; flex-direction: column; gap: 14px; }
.dif-big {
  background: var(--black); border-radius: 20px; padding: 44px;
  position: relative; overflow: hidden;
}
.dif-big::before {
  content: ''; position: absolute; top: -60px; right: -60px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(255,214,0,0.15), transparent 70%);
}
.dif-big-num { font-size: 5rem; font-weight: 900; color: var(--yellow); line-height: 1; margin-bottom: 8px; }
.dif-big-label { font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.dif-big-sub { font-size: 13px; color: rgba(255,255,255,0.4); }
.dif-minis { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.dif-mini {
  background: var(--white); border: 1.5px solid var(--gray2);
  border-radius: 14px; padding: 22px; text-align: center;
  transition: all 0.3s var(--ease);
}
.dif-mini:hover { border-color: var(--yellow); transform: translateY(-3px); box-shadow: 0 8px 20px rgba(0,0,0,0.08); }
.dif-mini-num { font-size: 2rem; font-weight: 900; color: var(--black); line-height: 1; margin-bottom: 4px; }
.dif-mini-label { font-size: 11px; color: #aaa; font-weight: 500; }

/* ===== DEPOIMENTOS ===== */
#depoimentos { background: var(--white); }
.depo-head { text-align: center; margin-bottom: 40px; }

.depo-google {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  background: var(--gray); border-radius: 14px; padding: 18px 28px;
  margin-bottom: 36px; flex-wrap: wrap;
  max-width: 1160px; margin-left: auto; margin-right: auto;
}
.depo-google-rating { display: flex; align-items: center; gap: 14px; }
.depo-google-stars { display: flex; gap: 3px; margin-bottom: 3px; }
.depo-google-text { font-size: 12px; color: var(--text2); }
.depo-google-btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 700; color: var(--black);
  background: var(--white); border: 1.5px solid var(--gray2);
  padding: 10px 20px; border-radius: 8px;
  transition: all 0.3s var(--ease);
}
.depo-google-btn:hover { border-color: var(--yellow); background: #FFFDE7; }

/* Maps hover on cinfo */
a.cinfo:hover { border-color: var(--yellow); background: #FFFDE7; }
a.cinfo strong { color: var(--black); }
.depo-head .tag { justify-content: center; }
.depo-head .tag::before { display: none; }
.depo-head .sec-desc { margin: 0 auto; text-align: center; }
.depo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.depo-card {
  background: var(--white); border: 1.5px solid var(--gray2);
  border-radius: 18px; padding: 30px;
  transition: all 0.3s var(--ease);
}
.depo-card:hover { border-color: var(--yellow); transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.08); }
.depo-stars { display: flex; gap: 3px; margin-bottom: 14px; }
.star { width: 14px; height: 14px; fill: var(--yellow); }
.depo-text { font-size: 14px; color: var(--text2); line-height: 1.7; margin-bottom: 22px; }
.depo-author { display: flex; align-items: center; gap: 12px; }
.depo-av {
  width: 40px; height: 40px; background: var(--yellow); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; font-weight: 800; color: var(--black); flex-shrink: 0;
}
.depo-author strong { display: block; font-size: 13px; font-weight: 700; color: var(--black); }
.depo-author span { font-size: 12px; color: #aaa; }

/* ===== CTA STRIP ===== */
#cta {
  background: var(--black);
  padding: 80px 6%;
  position: relative; overflow: hidden;
}
.cta-gear, .cta-gear2 { display: none; }
.cta-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px; position: relative; z-index: 1;
}
.cta-text h2 { font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 900; color: var(--white); margin-bottom: 10px; line-height: 1.15; }
.cta-text p { font-size: 1rem; color: rgba(255,255,255,0.5); }
.cta-text h2 strong { color: var(--yellow); }
.cta-actions { display: flex; flex-direction: column; gap: 12px; flex-shrink: 0; }
.cta-phones { display: flex; flex-direction: column; gap: 4px; }
.cta-phones a {
  font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.5);
  display: flex; align-items: center; gap: 8px;
  transition: color 0.3s;
}
.cta-phones a:hover { color: var(--yellow); }
.cta-phones svg { width: 14px; height: 14px; flex-shrink: 0; }

/* ===== CONTATO ===== */
#contato { background: var(--gray); }
.contato-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: start; }
.contato-info { display: flex; flex-direction: column; gap: 20px; margin-top: 36px; }
.cinfo {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 18px 20px; background: var(--white); border-radius: 12px;
  border: 1.5px solid transparent; transition: all 0.3s var(--ease);
}
.cinfo:hover { border-color: var(--yellow); }
.cinfo-icon { width: 40px; height: 40px; background: var(--yellow); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cinfo-icon svg { width: 18px; height: 18px; color: var(--black); }
.cinfo strong { display: block; font-size: 13px; font-weight: 700; color: var(--black); margin-bottom: 3px; }
.cinfo span, .cinfo a { font-size: 13px; color: var(--text2); display: block; line-height: 1.5; transition: color 0.3s; }
.cinfo a:hover { color: var(--black); }

/* Form */
.contato-cta-box {
  background: var(--white); border-radius: 20px; padding: 44px;
  border: 1.5px solid var(--gray2); display: flex; flex-direction: column; gap: 20px;
}
.contato-cta-icon {
  width: 72px; height: 72px; background: #25D366;
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; color: #fff;
}
.contato-cta-box h3 { font-size: 1.5rem; font-weight: 800; color: var(--black); }
.contato-cta-box p { font-size: 14px; color: var(--text2); line-height: 1.6; }
.contato-cta-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.contato-cta-list li {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 600; color: var(--black);
}
.contato-cta-list li svg { color: #25D366; flex-shrink: 0; }
.contato-cta-btn {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 28px; border-radius: 12px; font-size: 15px;
  font-weight: 800; text-decoration: none; margin-top: 8px;
  transition: all 0.3s var(--ease);
}
.contato-cta-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(255,214,0,0.35); }

/* ===== FOOTER ===== */
footer { background: var(--black); padding: 60px 6% 28px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 60px; margin-bottom: 44px; }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.7; margin-top: 14px; max-width: 270px; }
.footer-logo { display: flex; align-items: center; gap: 10px; }
.footer-logo .logo-name { color: var(--white); }
.footer-col h4 { font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.3); text-transform: uppercase; letter-spacing: 1.2px; margin-bottom: 18px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li p { font-size: 14px; color: rgba(255,255,255,0.5); transition: color 0.3s; }
.footer-col ul li p:hover { color: var(--yellow); }
.footer-coler h4 { font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.3); text-transform: uppercase; letter-spacing: 1.2px; margin-bottom: 18px; }
.footer-coler ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-coler ul li a { font-size: 14px; color: rgba(255,255,255,0.5); transition: color 0.3s; }
.footer-coler ul li a:hover { color: var(--yellow); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px;
}
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.25); }
.footer-bottom a { font-size: 12px; color: rgba(255,255,255,0.25); transition: color 0.3s; }
.footer-bottom a:hover { color: var(--yellow); }

/* ===== WHATSAPP FLOAT ===== */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  display: flex; align-items: center; justify-content: center;
  background: #25D366; color: var(--white);
  width: 62px; height: 62px; border-radius: 50%;
  box-shadow: 0 6px 28px rgba(37,211,102,0.45);
  transition: all 0.3s var(--ease);
}
.wa-float:hover { transform: translateY(-3px) scale(1.08); box-shadow: 0 14px 40px rgba(37,211,102,0.55); }
.wa-float svg { width: 30px; height: 30px; flex-shrink: 0; }

/* ===== ANIMATIONS ===== */
@keyframes fadeUp { from { opacity:0; transform:translateY(24px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeLeft { from { opacity:0; transform:translateX(30px); } to { opacity:1; transform:translateX(0); } }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .sobre-grid, .dif-grid, .contato-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-stats { position: static; margin-top: 48px; gap: 4px; }
  .hero-inner { max-width: 100%; }
  .srv-grid { grid-template-columns: 1fr 1fr; }
  .depo-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .brands-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 768px) {
  section { padding: 72px 5%; }
  nav { display: none; }
  .srv-grid, .depo-grid { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; }
  .brands-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-stats { flex-wrap: wrap; }
  .hstat:first-child, .hstat:last-child { border-radius: 12px; }
  /* Hero mobile: permite crescer sem restrição de altura */
  #hero { min-height: 100svh; }
  .hero-inner { padding: 80px 20px 24px; }
  #hero h1 { font-size: clamp(1.8rem, 8vw, 2.4rem); }
  /* Vídeo: cover forçado no mobile portrait */
  .hero-video-bg iframe {
    width: 177.78svh;
    height: 56.25vw;
    min-width: 100%; min-height: 100svh;
  }
  /* Depo google responsivo */
  .depo-google { flex-direction: column; align-items: flex-start; gap: 14px; }
  /* Marcas */
  .autorizada-strip { flex-direction: column; text-align: center; }
  .aut-left { flex-direction: column; text-align: center; }
}

/* ===== CARROSSEL DE LOGOS ===== */
.logos-carousel-wrap {
  overflow: hidden;
  position: relative;
  margin-bottom: 40px;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.logos-carousel-track {
  display: flex;
  width: max-content;
  animation: logoScroll 30s linear infinite;
}

.logo-slide {
  flex-shrink: 0;
  width: 180px;
  height: 110px;
  margin: 0 10px;
  background: var(--white);
  border: 1.5px solid var(--gray2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px 30px;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}

.logo-slide:hover {
  border-color: var(--yellow);
  box-shadow: 0 8px 24px rgba(255, 214, 0, 0.15);
  transform: translateY(-4px);
}

.logo-slide img {
  max-width: 100%;
  max-height: 52px;
  width: auto;
  height: auto;
  object-fit: contain;
  /* SVG: grayscale por padrão, colorido no hover */
  filter: grayscale(100%) opacity(0.5);
  transition: filter 0.35s ease;
}

.logo-slide:hover img {
  filter: grayscale(0%) opacity(1);
}

@keyframes logoScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (max-width: 768px) {
  .logo-slide {
    width: 140px;
    height: 88px;
    padding: 16px 20px;
  }
  .logos-carousel-track {
    animation-duration: 20s;
  }
}