*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
  overflow-x: clip;
}

body {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  background: #fff;
  overflow-x: clip;
}

img {
  max-width: 100%;
  display: block;
}

.hero-image img {
  max-width: none;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul, ol {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.text-center { text-align: center; }
.text-red { color: #E2272C; }
.mt-40 { margin-top: 40px; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 14px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  justify-content: center;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 16px;
}

.btn-block {
  width: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, #E2272C, #B31E22);
  color: #fff;
  box-shadow: 0 4px 15px rgba(226, 39, 44, 0.3);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #c9222a, #9a1a1e);
  box-shadow: 0 6px 20px rgba(226, 39, 44, 0.4);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}
.btn-whatsapp:hover {
  background: linear-gradient(135deg, #20bd5a, #0f7a6e);
  transform: translateY(-2px);
}

.btn-green {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  font-size: 16px;
  padding: 16px 28px;
}
.btn-green:hover {
  background: linear-gradient(135deg, #20bd5a, #0f7a6e);
  transform: translateY(-2px);
}

.btn-outline-red {
  background: transparent;
  color: #E2272C;
  border: 2px solid #E2272C;
  padding: 10px 24px;
  font-size: 13px;
}
.btn-outline-red:hover {
  background: #E2272C;
  color: #fff;
}

.section-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #E2272C;
  margin-bottom: 12px;
}
.section-label.center { display: block; text-align: center; }
.section-label.light-label { color: #E2272C; }

.section-title {
  font-size: 36px;
  font-weight: 700;
  color: #0B326B;
  margin-bottom: 16px;
  line-height: 1.2;
}
.section-title.center { text-align: center; }
.section-title.light { color: #fff; }

.section-subtitle {
  font-size: 17px;
  color: #666;
  margin-bottom: 40px;
}
.section-subtitle.center { text-align: center; }

/* ====== WRAPPER FIXO: TOPBAR + HEADER ====== */
.site-header-wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1001;
}

.topbar {
  background: #0B326B;
  color: #fff;
  padding: 8px 0;
  font-size: 13px;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.topbar-welcome {
  font-weight: 500;
  letter-spacing: 0.5px;
  font-size: 12px;
}

.topbar-contacts {
  display: flex;
  gap: 24px;
}

.topbar-item {
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.3s ease;
}
.topbar-item:hover { color: #fff; }
.topbar-item i {
  color: #E2272C;
  font-size: 14px;
}
.topbar-item strong { color: #fff; }

.header {
  background: #fff;
  width: 100%;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}


.site-header-wrap.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 0;
}

.logo-img {
  height: 48px;
  width: auto;
  display: block;
  object-fit: contain;
}

.logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #E2272C, #B31E22);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-name {
  font-size: 22px;
  font-weight: 800;
  color: #0B326B;
  letter-spacing: 1px;
}

.logo-sub {
  font-size: 10px;
  font-weight: 600;
  color: #E2272C;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.nav {
  display: flex;
  gap: 28px;
  margin-top: 0;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: #333;
  position: relative;
  padding: 4px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #E2272C;
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link:hover {
  color: #E2272C;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-phone {
  font-size: 14px;
  font-weight: 500;
  color: #0B326B;
}
.header-phone i {
  color: #E2272C;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  width: 26px;
  height: 3px;
  background: #0B326B;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

.hero {
  padding: 170px 0 0;
  background: url('../img/hero-bg.jpg') center/cover no-repeat;
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.hero-content {
  padding-bottom: 60px;
}

.hero h1 {
  font-size: 44px;
  font-weight: 800;
  color: #0B326B;
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-desc {
  font-size: 16px;
  color: #555;
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero-content .btn-wpp-premium {
  display: inline-flex;
  opacity: 1 !important;
  visibility: visible !important;
}

.hero-image {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 480px;
}

.hero-truck {
  position: absolute;
  bottom: 0;
  left: -130px;
  width: 660px;
  object-fit: contain;
  z-index: 1;
  animation: slideInLeft 1s ease-out forwards;
  opacity: 0;
}

.hero-worker {
  position: absolute;
  bottom: 0;
  right: -70px;
  width: 500px !important;
  object-fit: contain;
  z-index: 2;
  animation: slideInRight 1s ease-out 0.4s forwards;
  opacity: 0;
}

@keyframes slideInLeft {
  from { transform: translateX(-100px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

@keyframes slideInRight {
  from { transform: translateX(100px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* Marquee */
.hero-marquee {
  background: #E2272C;
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  display: inline-block;
  animation: marqueeScroll 40s linear infinite;
}

.marquee-track span {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.hero-badge {
  position: absolute;
  bottom: 25px;
  right: -115px;
  width: 160px;
  height: 160px;
  z-index: 3;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,0.25));
}

.hero-badge-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.badge-svg {
  width: 100%;
  height: 100%;
  animation: spinBadge 15s linear infinite;
}

.badge-text {
  font-size: 13.5px;
  font-weight: 700;
  fill: #0B326B;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-family: 'Poppins', sans-serif;
}

.badge-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  background: linear-gradient(135deg, #E2272C, #B31E22);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(226, 39, 44, 0.3);
}

.badge-years {
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.badge-label {
  font-size: 10px;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  letter-spacing: 2px;
  text-transform: uppercase;
}

@keyframes spinBadge {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.footer-rota {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #E2272C;
  font-size: 14px;
  font-weight: 500;
  margin-top: 8px;
}
.footer-rota:hover {
  color: #fff;
}

.sobre {
  padding: 60px 0;
  background: linear-gradient(135deg, #0B326B, #0A2853);
  color: #fff;
}

.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.sobre-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;
}

.sobre-right .stat-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 0;
}

.sobre-text {
  font-size: 16px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 16px;
  line-height: 1.7;
}

.sobre-image {
  margin-top: 24px;
}

.sobre-img {
  width: 100%;
  border-radius: 12px;
  object-fit: contain;
}

.sobre-image-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: rgba(255,255,255,0.08);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.3);
  font-size: 50px;
  gap: 10px;
  margin-top: 24px;
  border: 1px dashed rgba(255,255,255,0.15);
}
.sobre-image-placeholder span {
  font-size: 13px;
}

.stat-card {
  background: rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 28px;
  margin-bottom: 20px;
  border-left: 4px solid #E2272C;
  transition: transform 0.3s ease;
}
.stat-card:hover {
  transform: translateX(6px);
}

.stat-number {
  font-size: 42px;
  font-weight: 800;
  color: #E2272C;
  line-height: 1;
}
.stat-number small {
  font-size: 24px;
}

.stat-label {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
}

.stat-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}

.stat-card .stat-desc + .stat-label {
  margin-top: 24px;
}

.servicos {
  padding: 60px 0;
  background: #fff;
}

.servicos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 20px;
}

.servico-card {
  background: #f8f9fc;
  border-radius: 12px;
  padding: 32px 24px;
  transition: all 0.3s ease;
  border: 1px solid #eee;
}
.servico-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  border-color: #E2272C;
}

.servico-card.featured {
  padding: 0;
  overflow: hidden;
  background: #fff;
}

.servico-img-placeholder {
  width: 100%;
  height: 180px;
  background: linear-gradient(135deg, #0B326B, #164a8a);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  font-size: 48px;
}

.servico-img-wrap {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: linear-gradient(135deg, #0B326B, #164a8a);
}

.servico-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.servico-card:hover .servico-img {
  transform: scale(1.05);
}

.servico-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
}

.servico-body p {
  flex: 1;
}

.servico-card.featured {
  display: flex;
  flex-direction: column;
}

.servico-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: #0B326B;
  margin-bottom: 8px;
}

.servico-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 16px;
}

.servico-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(226,39,44,0.1), rgba(226,39,44,0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #E2272C;
  font-size: 24px;
  margin-bottom: 16px;
}

.servicos-complementares {
  margin-top: 50px;
}

.servicos-bg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 24px;
}

.servico-bg-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  min-height: 260px;
  background-size: cover;
  background-position: center;
  background-color: #0B326B;
  display: flex;
  align-items: flex-end;
  transition: all 0.4s ease;
  border: 1px solid transparent;
  border-bottom: 3px solid #E2272C;
}

.servico-bg-card:hover {
  transform: translateY(-6px);
  border-color: rgba(226,39,44,0.5);
  box-shadow: 0 12px 35px rgba(226,39,44,0.15);
}

.servico-bg-card::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 50px 50px 0;
  border-color: transparent #E2272C transparent transparent;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 2;
}

.servico-bg-card:hover::after {
  opacity: 1;
}

.servico-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,50,107,0.3) 0%, rgba(11,50,107,0.85) 60%, rgba(11,50,107,0.95) 100%);
  transition: background 0.4s ease;
}

.servico-bg-card:hover .servico-bg-overlay {
  background: linear-gradient(180deg, rgba(11,50,107,0.15) 0%, rgba(11,50,107,0.75) 50%, rgba(11,50,107,0.95) 100%);
}

.servico-bg-content {
  position: relative;
  z-index: 1;
  padding: 28px;
  width: 100%;
}

.servico-bg-ico {
  width: 44px;
  height: 44px;
  object-fit: contain;
  margin-bottom: 12px;
  display: block;
  transition: transform 0.4s ease;
}

.servico-bg-card:hover .servico-bg-ico {
  transform: scale(1.15);
}

.servico-bg-content h4 {
  transition: color 0.3s ease;
}

.servico-bg-card:hover .servico-bg-content h4 {
  color: #E2272C;
}

.servico-bg-content h4 {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 6px;
}

.servico-bg-content p {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  line-height: 1.55;
}

.diferenciais {
  padding: 60px 0;
  background: linear-gradient(160deg, #06193d 0%, #0B326B 50%, #0A2853 100%);
}

.dif-two-col {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.dif-left {
  position: sticky;
  top: 140px;
}

.dif-left-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 28px;
  margin-bottom: 20px;
}

.dif-left-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin: 16px 0 32px;
}

.dif-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.dif-card-h {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  transition: all 0.35s ease;
}

.dif-card-h:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(226,39,44,0.3);
  transform: translateX(6px);
}

.dif-card-icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s ease;
}

.dif-card-icon img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.dif-card-h:hover .dif-card-icon {
  background: rgba(255,255,255,0.12);
  transform: scale(1.08);
}

.dif-card-body h3 {
  font-size: 17px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
  transition: color 0.3s ease;
}

.dif-card-h:hover .dif-card-body h3 {
  color: #E2272C;
}

.dif-card-body p {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.55;
}

.btn-wpp-premium {
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: linear-gradient(135deg, #25D366, #1da851);
  border-radius: 14px;
  padding: 16px 8px;
  text-decoration: none;
  transition: all 0.35s ease;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.25);
  overflow: hidden;
  max-width: 370px;
  position: relative;
}

.btn-wpp-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.35) 50%, transparent 100%);
  transform: skewX(-20deg);
  z-index: 1;
  pointer-events: none;
  animation: btnShine 3s ease-in-out infinite;
}

.btn-wpp-premium > * {
  position: relative;
  z-index: 2;
}

@keyframes btnShine {
  0% { left: -100%; }
  60%, 100% { left: 150%; }
}

.btn-wpp-premium:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.35);
}

.btn-wpp-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 36px;
  margin-left: 12px;
}

.btn-wpp-text {
  flex: 1;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.btn-wpp-text strong {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  font-family: 'Poppins', sans-serif;
}

.btn-wpp-text small {
  font-size: 12px;
  color: rgba(255,255,255,0.8);
  font-weight: 400;
  font-family: 'Poppins', sans-serif;
}

.btn-wpp-arrow {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  margin-right: 6px;
  animation: arrowPulse 1.5s ease-in-out infinite;
}

@keyframes arrowPulse {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(5px); }
}

.processo {
  padding: 60px 0;
  background: #f8f9fc;
}

.timeline {
  position: relative;
  margin-top: 60px;
}

.timeline-line {
  position: absolute;
  top: 22px;
  left: 10%;
  right: 10%;
  height: 3px;
  background: #e0e4ea;
  border-radius: 2px;
  z-index: 0;
}

.timeline-line-fill {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, #E2272C, #0B326B);
  border-radius: 2px;
  transition: width 1.5s ease;
}

.timeline-line-fill.animated {
  width: 100%;
}

.timeline-steps {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

.timeline-step {
  flex: 1;
  text-align: center;
  max-width: 200px;
}

.timeline-dot {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid #e0e4ea;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  transition: all 0.4s ease;
  position: relative;
}

.timeline-dot span {
  font-size: 13px;
  font-weight: 700;
  color: #999;
  transition: color 0.4s ease;
}

.timeline-dot.active {
  border-color: #E2272C;
  background: #E2272C;
  box-shadow: 0 0 0 6px rgba(226, 39, 44, 0.15);
}

.timeline-dot.active span {
  color: #fff;
}

.timeline-icon {
  width: 80px;
  height: 80px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid #e8ebf0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  transition: all 0.4s ease;
}

.timeline-icon img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.timeline-step:hover .timeline-icon {
  border-color: #E2272C;
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(226,39,44,0.12);
}

.timeline-step h3 {
  font-size: 15px;
  font-weight: 600;
  color: #0B326B;
  margin-bottom: 6px;
  line-height: 1.3;
}

.timeline-step p {
  font-size: 13px;
  color: #888;
  line-height: 1.5;
  padding: 0 8px;
}

.timeline-connector {
  display: flex;
  align-items: center;
  padding-top: 8px;
  flex-shrink: 0;
}

.timeline-arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 13px;
  box-shadow: 0 3px 10px rgba(37,211,102,0.3);
  animation: arrowBounce 2s ease-in-out infinite;
}

@keyframes arrowBounce {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(4px); }
}

.timeline-footer {
  text-align: center;
  font-size: 15px;
  color: #888;
  margin-top: 50px;
  line-height: 1.6;
}

.timeline-footer strong {
  color: #0B326B;
}

.depoimentos {
  padding: 60px 0;
  background: linear-gradient(135deg, #0B326B, #0A2853);
  overflow: hidden;
}

.ticker-wrapper {
  margin-top: 50px;
  overflow: hidden;
  touch-action: pan-y;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  padding: 10px 0;
  cursor: grab;
  user-select: none;
}

.ticker-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: tickerScroll 45s linear infinite;
}

.ticker-track:hover {
  animation-play-state: paused;
}

@keyframes tickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.depoimento-card {
  flex-shrink: 0;
  width: 380px;
  background: rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 32px;
  border-top: 3px solid #E2272C;
  transition: background 0.3s ease;
}
.depoimento-card:hover {
  background: rgba(255,255,255,0.12);
}

.depoimento-stars {
  color: #fbbf24;
  font-size: 16px;
  margin-bottom: 16px;
  display: flex;
  gap: 3px;
}

.depoimento-card p {
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
}

.depoimento-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.depoimento-avatar-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(226,39,44,0.4);
  flex-shrink: 0;
}

.depoimento-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(226,39,44,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #E2272C;
  font-size: 18px;
}

.depoimento-author strong {
  display: block;
  font-size: 14px;
  color: #fff;
}

.depoimento-author span {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}

.depoimentos-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-top: 50px;
  padding: 32px 40px;
  background: rgba(255,255,255,0.06);
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
}

.depoimentos-cta-text {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  max-width: 480px;
}

.depoimentos-cta-text strong {
  color: #fff;
}

.depoimentos-cta .btn-wpp-premium {
  flex-shrink: 0;
  min-width: 320px;
}

.depoimentos-phone-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px 28px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 14px;
  text-decoration: none;
  flex-shrink: 0;
  transition: background 0.3s, border-color 0.3s;
}
.depoimentos-phone-cta:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.3);
}
.depoimentos-phone-label {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  font-weight: 400;
  letter-spacing: 0.3px;
  text-align: center;
  width: 100%;
}
.depoimentos-phone-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.depoimentos-phone-icon {
  font-size: 26px;
  color: #fff;
  background: #E2272C;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.depoimentos-phone-number {
  font-size: 30px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.5px;
  line-height: 1;
  white-space: nowrap;
}

.faq-contato {
  padding: 60px 0;
  background: #f8f9fc;
}

.faq-contato-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 50px;
  align-items: start;
}

.faq-left {
  position: sticky;
  top: 140px;
}

.faq-left .section-title {
  font-size: 30px;
  margin-bottom: 8px;
}

.faq-left-desc {
  font-size: 15px;
  color: #666;
  line-height: 1.65;
  margin-bottom: 24px;
}

.faq-left .btn-wpp-premium {
  margin-bottom: 28px;
}

.faq-form-wrap {
  background: #fff;
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  margin-bottom: 24px;
}

.faq-form-wrap h4 {
  font-size: 15px;
  font-weight: 600;
  color: #0B326B;
  margin-bottom: 16px;
}

.faq-form-wrap h4 i {
  color: #E2272C;
  margin-right: 6px;
}

.faq-form input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  margin-bottom: 10px;
  background: #f8f9fc;
  transition: border-color 0.3s ease;
}
.faq-form input:focus {
  outline: none;
  border-color: #E2272C;
  background: #fff;
}

.input-icon-wrap {
  position: relative;
  margin-bottom: 10px;
}

.input-icon-wrap i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #bbb;
  font-size: 15px;
  pointer-events: none;
  transition: color 0.3s ease;
}

.input-icon-wrap input {
  padding-left: 40px;
  margin-bottom: 0;
}

.input-icon-wrap:focus-within i {
  color: #E2272C;
}

.form-checkboxes {
  margin-bottom: 12px;
}

.checkbox-title {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #0B326B;
  margin-bottom: 8px;
}

.form-checkboxes label {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  color: #555;
  margin-right: 12px;
  margin-bottom: 6px;
  cursor: pointer;
}

.form-checkboxes input[type="checkbox"] {
  width: 15px;
  height: 15px;
  margin: 0;
  accent-color: #E2272C;
}

.mini-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.mini-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid #eee;
  transition: all 0.3s ease;
  min-height: 72px;
}

.mini-card:hover {
  border-color: #E2272C;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.mini-card i {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, #E2272C, #B31E22);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.mini-card strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #0B326B;
  line-height: 1.2;
}

.mini-card span {
  font-size: 11px;
  color: #999;
}

.faq-right {
  padding-top: 4px;
}

.faq-right-title {
  font-size: 24px;
  font-weight: 700;
  color: #0B326B;
  margin-bottom: 24px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  border: 1px solid #e8ebf0;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
  background: #fff;
}
.faq-item:hover {
  border-color: #ddd;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: none;
  border: none;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  cursor: pointer;
  text-align: left;
  gap: 14px;
  transition: all 0.3s ease;
}

.faq-question:hover {
  color: #E2272C;
}

.faq-question i {
  font-size: 13px;
  color: #E2272C;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-question {
  color: #E2272C;
  background: #fef2f2;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  overflow: hidden;
  height: 0;
  transition: height 0.35s ease;
}

.faq-answer-inner {
  padding: 4px 20px 18px;
  font-size: 13px;
  color: #666;
  line-height: 1.7;
}

.footer {
  background: #071e40;
  color: #fff;
  padding: 0;
  position: relative;
}

.footer-top-line {
  height: 3px;
  background: linear-gradient(90deg, #0B326B, #E2272C, #0B326B);
}

.footer-cascade {
  text-align: center;
  padding: 50px 0 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.footer-logo-wrap {
  margin-bottom: 4px;
}

.footer-logo-img {
  height: 48px;
  width: auto;
  display: block;
}

.footer-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  max-width: 500px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.footer-nav a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  padding: 8px 16px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.08);
  transition: all 0.3s ease;
}

.footer-nav a i {
  font-size: 13px;
  color: #E2272C;
}

.footer-nav a:hover {
  color: #fff;
  background: rgba(226,39,44,0.12);
  border-color: rgba(226,39,44,0.3);
}

.footer-endereco {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: rgba(255,255,255,0.5);
}

.footer-endereco p {
  margin: 0;
}

.footer-endereco p i {
  color: #E2272C;
  margin-right: 6px;
}

.footer-phones {
  display: flex;
  gap: 24px;
  justify-content: center;
}

.footer-phone-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  transition: color 0.3s ease;
}

.footer-phone-item i {
  color: #E2272C;
  font-size: 16px;
}

.footer-phone-item:hover {
  color: #fff;
}

.footer-bottom {
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}

.footer-powered {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.footer-powered:hover {
  opacity: 0.8;
}

.footer-powered img {
  height: 22px;
  width: auto;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.footer-powered:hover img {
  opacity: 1;
}

.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  padding: 20px;
}

.popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

.popup-content {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

.popup-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  font-size: 32px;
  color: #999;
  cursor: pointer;
  line-height: 1;
  transition: color 0.3s ease;
}
.popup-close:hover {
  color: #E2272C;
}

.popup-content h3 {
  font-size: 24px;
  font-weight: 700;
  color: #0B326B;
  margin-bottom: 4px;
}

.popup-subtitle {
  font-size: 14px;
  color: #999;
  margin-bottom: 28px;
}

.popup-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.popup-form input,
.popup-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  margin-bottom: 14px;
  transition: border-color 0.3s ease;
  background: #f8f9fc;
}
.popup-form input:focus,
.popup-form textarea:focus {
  outline: none;
  border-color: #E2272C;
  background: #fff;
}

.popup-form .form-checkboxes {
  background: #f8f9fc;
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 14px;
}

.hp-field {
  position: absolute !important;
  left: -9999px !important;
  top: -9999px !important;
  width: 0 !important;
  height: 0 !important;
  opacity: 0 !important;
  pointer-events: none !important;
  tabindex: -1;
}

.field-error {
  display: block;
  color: #E2272C;
  font-size: 11px;
  font-weight: 500;
  margin-top: -4px;
  margin-bottom: 8px;
  padding-left: 2px;
  min-height: 0;
}
.field-error:empty {
  margin-bottom: 0;
}
.input-icon-wrap.input-error input {
  border-color: #E2272C !important;
  background: #fff5f5;
}
.input-icon-wrap.input-error i {
  color: #E2272C;
}
.popup-form input.input-error,
.popup-form textarea.input-error {
  border-color: #E2272C !important;
  background: #fff5f5;
}
.form-checkboxes.input-error {
  border: 1px solid #E2272C;
  border-radius: 8px;
}
.form-field {
  display: flex;
  flex-direction: column;
}
.form-field input {
  margin-bottom: 2px;
}
.form-success {
  text-align: center;
  padding: 32px 16px;
}
.form-success i {
  font-size: 52px;
  color: #22c55e;
  display: block;
  margin-bottom: 14px;
}
.form-success strong {
  display: block;
  font-size: 17px;
  font-weight: 700;
  color: #0B326B;
  margin-bottom: 8px;
}
.form-success p {
  font-size: 14px;
  color: #555;
}

.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: all 0.3s ease;
  animation: pulse-whatsapp 2s infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

@keyframes pulse-whatsapp {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6); }
}

/* ====== POPUP LGPD ====== */
.lgpd-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #0B1A2E;
  border-top: 3px solid #E2272C;
  padding: 20px 24px;
  z-index: 99999;
  box-shadow: 0 -4px 30px rgba(0,0,0,0.4);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
.lgpd-popup.show {
  transform: translateY(0);
}
.lgpd-popup-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
}
.lgpd-popup-icon {
  font-size: 28px;
  color: #E2272C;
  flex-shrink: 0;
}
.lgpd-popup-text {
  flex: 1;
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
}
.lgpd-popup-text a {
  color: #E2272C;
  text-decoration: underline;
  font-weight: 600;
}
.lgpd-popup-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}
.lgpd-btn-accept {
  background: #E2272C;
  color: #fff;
  border: none;
  padding: 10px 24px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  transition: background 0.2s;
}
.lgpd-btn-accept:hover {
  background: #c91f24;
}
.lgpd-btn-reject {
  background: transparent;
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 10px 24px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  transition: border-color 0.2s, color 0.2s;
}
.lgpd-btn-reject:hover {
  border-color: rgba(255,255,255,0.5);
  color: #fff;
}

@media (max-width: 768px) {
  .lgpd-popup-inner {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }
  .lgpd-popup-icon {
    display: none;
  }
  .lgpd-popup-actions {
    width: 100%;
    justify-content: center;
  }
}

/* ====== POLÍTICA DE PRIVACIDADE ====== */
.politica-privacidade {
  padding: 60px 0 80px;
  color: rgba(255,255,255,0.85);
  line-height: 1.8;
}
.politica-privacidade h1 {
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 3px solid #E2272C;
}
.politica-privacidade h2 {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin: 36px 0 12px;
}
.politica-privacidade p {
  margin-bottom: 14px;
}
.politica-privacidade ul {
  margin: 0 0 14px 24px;
}
.politica-privacidade li {
  margin-bottom: 6px;
}
.politica-privacidade a {
  color: #E2272C;
  text-decoration: underline;
}
.politica-privacidade table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0 24px;
  font-size: 14px;
}
.politica-privacidade th,
.politica-privacidade td {
  border: 1px solid rgba(255,255,255,0.15);
  padding: 12px 14px;
  text-align: left;
}
.politica-privacidade th {
  background: rgba(226,39,44,0.15);
  color: #fff;
  font-weight: 600;
}
.politica-privacidade td {
  background: rgba(255,255,255,0.04);
}
.politica-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #E2272C;
  font-weight: 600;
  text-decoration: none;
  margin-bottom: 32px;
  transition: opacity 0.2s;
}
.politica-back:hover {
  opacity: 0.8;
}

@media (max-width: 1024px) {
  .hero h1 { font-size: 34px; }
  .hero-image { min-height: 420px; }
  .section-title { font-size: 30px; }
  .servicos-grid { grid-template-columns: repeat(2, 1fr); }
  .servicos-bg-grid { grid-template-columns: repeat(2, 1fr); }
  .dif-two-col { grid-template-columns: 1fr; }
  .dif-left { position: static; text-align: center; }
  .dif-left-icon { margin: 0 auto 20px; }
  .btn-wpp-premium { margin: 0 auto; }
  .depoimento-card { width: 340px; }
  .footer-nav { gap: 6px; }
}

.mobile-drawer-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 2000;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.mobile-drawer-overlay.active {
  display: block;
  opacity: 1;
}

.mobile-drawer {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 300px;
  height: 100%;
  background: #0B326B;
  z-index: 2001;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s ease;
  overflow-y: auto;
}
.mobile-drawer.active {
  transform: translateX(0);
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.mobile-drawer-logo {
  height: 36px;
  width: auto;
  margin-top: 10px;
}

.mobile-drawer-close {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  border: none;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}
.mobile-drawer-close:hover { background: #E2272C; }

.mobile-drawer-nav {
  display: flex;
  flex-direction: column;
  padding: 16px 0;
}

.mobile-drawer-nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: all 0.3s ease;
}
.mobile-drawer-nav a i {
  color: #E2272C;
  width: 20px;
  text-align: center;
  font-size: 15px;
}
.mobile-drawer-nav a:hover {
  background: rgba(255,255,255,0.05);
  color: #fff;
  padding-left: 30px;
}

.mobile-drawer-cta {
  padding: 16px 20px;
}

.mobile-drawer-contacts {
  padding: 0 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mobile-drawer-contacts a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  padding: 10px 14px;
  border-radius: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}
.mobile-drawer-contacts a i {
  color: #E2272C;
  font-size: 16px;
}

.mobile-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1500;
  background: #0B326B;
  flex-direction: column;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
  border-top: 2px solid #E2272C;
}

.mobile-bottom-cta {
  text-align: center;
  padding: 10px 16px 6px;
}

.mobile-bottom-title {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  font-family: 'Poppins', sans-serif;
}
.mobile-bottom-title strong {
  color: #fff;
  font-weight: 700;
}

.mobile-bottom-btns {
  display: flex;
  gap: 8px;
  padding: 6px 12px 12px;
}

.mobile-bottom-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  text-decoration: none;
  transition: all 0.3s ease;
}
.mobile-bottom-btn i { font-size: 20px; }

.mobile-btn-call {
  background: #fff;
  color: #0B326B;
  white-space: nowrap;
}
.mobile-btn-call i { color: #E2272C; }

.mobile-btn-wpp {
  background: #25D366;
  color: #fff;
  position: relative;
}

.mobile-btn-wpp-pulse::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 10px;
  background: #25D366;
  animation: mobilePulse 2s ease-out infinite;
  z-index: -1;
}

@keyframes mobilePulse {
  0%   { transform: scale(1); opacity: 0.7; }
  70%  { transform: scale(1.12); opacity: 0; }
  100% { transform: scale(1.12); opacity: 0; }
}

@media (max-width: 768px) {
  html { scroll-padding-top: 70px; }

  /* ====== HEADER MOBILE — INDEPENDENTE DO DESKTOP ====== */
  .topbar { display: none; }

  .site-header-wrap {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1001;
    opacity: 1 !important;
    transform: none !important;
  }

  .header {
    background: #fff;
    border-bottom: 1px solid #eee;
    box-shadow: 0 1px 8px rgba(0,0,0,0.06);
  }

  .header-inner {
    height: 60px;
    padding-top: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .logo {
    margin-top: 6px;
    gap: 8px;
  }
  .logo-img { height: 36px; }

  .nav { display: none; }
  .header-phone { display: none; }
  .header-actions .btn { display: none; }
  .hamburger { display: flex; }
  .whatsapp-float { display: none; }

  .mobile-bottom-bar { display: flex; }
  .mobile-drawer { display: flex; }
  /* ====== FIM HEADER MOBILE ====== */

  
  .hero { padding: 74px 0 0; }
  .hero-inner { grid-template-columns: 1fr; gap: 10px; text-align: center; }
  .hero-content { padding-bottom: 15px; }
  .hero h1 { font-size: 24px; margin-bottom: 8px; }
  .hero-desc { font-size: 13px; margin-bottom: 16px; }
  .hero .btn-wpp-premium { margin: 0 auto; }
  .hero-image { height: 340px; min-height: auto; overflow: visible; }
  .hero-image img { max-width: 100%; }
  .hero-truck { display: block !important; left: 50% !important; right: auto !important; transform: translateX(-50%) !important; width: 450px !important; max-width: none !important; height: auto !important; max-height: none !important; }
  .hero-worker { width: auto !important; max-height: none !important; height: 380px !important; right: auto !important; left: 60% !important; transform: translateX(-50%) !important; }
  .hero-badge { width: 110px; height: 110px; bottom: 20px; left: 15%; right: auto; }

  .sobre-image { margin-top: 16px; }
  .sobre-img { width: 100%; max-height: 200px; object-fit: contain; border-radius: 8px; }

  
  .section-title { font-size: 24px; }
  .sobre, .servicos, .diferenciais, .processo, .depoimentos, .faq-contato {
    padding: 40px 0;
  }

  .sobre-grid { grid-template-columns: 1fr; }
  .servicos-grid { grid-template-columns: 1fr; }
  .servicos-bg-grid { grid-template-columns: 1fr; }
  .dif-two-col { grid-template-columns: 1fr; }
  .dif-left { position: static; text-align: center; }
  .dif-left-icon { margin: 0 auto 20px; }
  .dif-left .btn-wpp-premium { margin: 0 auto; }
  .dif-card-h { padding: 28px 22px; gap: 18px; }
  .dif-card-icon { width: 60px; height: 60px; font-size: 26px; border-radius: 14px; }
  .dif-card-icon img { width: 40px; height: 40px; }
  .dif-card-body h3 { font-size: 18px; margin-bottom: 4px; }
  .dif-card-body p { font-size: 14px; }
  .depoimento-card { width: 300px; padding: 24px; }
  .faq-contato-grid { grid-template-columns: 1fr; }
  .faq-left { position: static; text-align: center; align-items: center; display: flex; flex-direction: column; }
  .faq-left .btn-wpp-premium { align-self: stretch; justify-content: center; }
  .footer-phones { flex-direction: column; gap: 12px; align-items: center; }
  .footer-bottom-inner { flex-direction: column; gap: 10px; text-align: center; padding-bottom: 20px; }
  .footer-bottom p { font-size: 11px; }
  .footer-powered { font-size: 10px; }
  .footer-powered img { height: 18px; }

  .timeline-steps { flex-wrap: wrap; justify-content: center; gap: 20px; }
  .timeline-line { display: none; }
  .timeline-connector { display: none; }
  .timeline-step { flex: 0 0 45%; max-width: none; }

  .depoimentos-cta { flex-direction: column; text-align: center; padding: 24px 20px; }
  .depoimentos-phone-cta { align-self: stretch; }
  .depoimentos-phone-number { font-size: 26px; }

  .popup-content { padding: 28px 20px; }
  .popup-form .form-row { grid-template-columns: 1fr; }
  .form-checkboxes { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
  .form-checkboxes .checkbox-title { grid-column: 1 / -1; }

  
  .btn-wpp-premium { padding: 8px 6px; max-width: 100%; }
  .btn-wpp-icon { font-size: 28px; margin-left: 8px; }
  .btn-wpp-text strong { font-size: 13px; }
  .btn-wpp-text small { font-size: 11px; }
  .btn-wpp-arrow { width: 36px; height: 36px; font-size: 14px; }

  
  .footer { padding-bottom: 90px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 22px; }
  .hero-image { height: 280px; }
  .hero-truck { max-height: none !important; width: 400px !important; }
  .hero-worker { max-height: 90% !important; }
  .stat-number { font-size: 34px; }
  .timeline-step { flex: 0 0 100%; }
  .servicos-bg-grid { gap: 12px; }
  .mini-cards { grid-template-columns: 1fr; gap: 14px; width: 100%; }
  .mini-card { padding: 20px 20px; gap: 16px; border-radius: 14px; min-height: 90px; align-items: center; }
  .mini-card div { flex: 1; text-align: center; }
  .faq-form-wrap { width: 100%; }
  .mini-card i { width: 50px; height: 50px; font-size: 20px; border-radius: 12px; }
  .mini-card strong { font-size: 16px; }
  .mini-card span { font-size: 13px; }
}
