*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red: #d32f2f;
  --red-dark: #b71c1c;
  --red-light: #ef5350;
  --green: #2e7d32;
  --green-dark: #1b5e20;
  --green-light: #43a047;
  --white: #ffffff;
  --gray-100: #f5f5f5;
  --gray-200: #eeeeee;
  --gray-600: #757575;
  --gray-900: #212121;
  --shadow: 0 8px 32px rgba(0,0,0,0.12);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--gray-900);
  background: var(--white);
  overflow-x: hidden;
  max-width: 100%;
}

/* ────────────────────────────────────────
   NAVBAR
──────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  transition: box-shadow 0.3s ease;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  z-index: 1001;
  flex-shrink: 0;
}

.logo-img {
  width: auto;
  height: 70px;
  border-radius: 0;
  object-fit: contain;
  flex-shrink: 0;
  box-shadow: none;
  animation: none;
  display: block;
}

@keyframes pulse-logo {
  0%, 100% { box-shadow: 0 4px 12px rgba(46,125,50,0.35); }
  50%       { box-shadow: 0 4px 24px rgba(46,125,50,0.6); }
}

.logo-text { line-height: 1.1; margin-left: 0; }
.logo-text span:first-child { display: block; font-size: 13px; font-weight: 600; color: var(--gray-900); }
.logo-text span:nth-child(2) { display: block; font-size: 15px; font-weight: 800; color: var(--red); }
.logo-location { display: block; font-size: 11px; font-weight: 700; color: var(--gray-900); letter-spacing: 0.3px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  flex: 1;
  justify-content: center;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-links a {
  text-decoration: none;
  color: var(--gray-900);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.nav-links a:hover { background: var(--gray-100); color: var(--red); }

.nav-links a.active {
  color: var(--red);
  font-weight: 700;
  background: rgba(211,47,47,0.07);
  position: relative;
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 18px;
  height: 3px;
  background: var(--red);
  border-radius: 2px;
}

.nav-cta {
  background: var(--green) !important;
  color: white !important;
  border-radius: 24px !important;
  padding: 10px 22px !important;
  font-weight: 600 !important;
  box-shadow: 0 4px 14px rgba(46,125,50,0.35);
  transition: all 0.3s ease !important;
  text-decoration: none !important;
}

.nav-cta:hover {
  background: var(--green-dark) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(46,125,50,0.45) !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: transparent;
}

.hamburger span {
  width: 24px; height: 2px;
  background: var(--gray-900);
  border-radius: 2px;
  transition: all 0.35s ease;
  display: block;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu overlay */
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 998;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.mobile-overlay.open {
  display: block;
  opacity: 1;
}

.mobile-menu {
  display: flex;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(320px, 85vw);
  background: white;
  z-index: 999;
  flex-direction: column;
  gap: 0;
  padding: 0;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  visibility: hidden;
  pointer-events: none;
  box-shadow: -8px 0 40px rgba(0,0,0,0.15);
}

.mobile-menu.open {
  transform: translateX(0);
  visibility: visible;
  pointer-events: auto;
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--gray-200);
  flex-shrink: 0;
}

.mobile-menu-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mobile-close {
  width: 38px;
  height: 38px;
  border: none;
  background: var(--gray-100);
  border-radius: 50%;
  font-size: 18px;
  color: var(--gray-900);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s ease;
}

.mobile-close:hover { background: var(--gray-200); }

.mobile-nav {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 12px 16px;
  gap: 4px;
  overflow-y: auto;
}

.mobile-nav a {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--gray-900);
  font-size: 16px;
  font-weight: 600;
  padding: 14px 16px;
  border-radius: 12px;
  transition: all 0.2s ease;
}

.mobile-nav a i {
  width: 20px;
  text-align: center;
  color: var(--red);
  font-size: 16px;
}

.mobile-nav a:hover {
  background: var(--gray-100);
  color: var(--red);
  padding-left: 22px;
}

.mobile-menu .mobile-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--red);
  color: white;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  padding: 16px 24px;
  margin: 16px;
  border-radius: 50px;
  box-shadow: 0 8px 24px rgba(211,47,47,0.35);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.mobile-menu .mobile-cta:hover { background: var(--red-dark); transform: translateY(-2px); }

/* ────────────────────────────────────────
   HERO
──────────────────────────────────────── */
#hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--red-dark) 0%, var(--red) 40%, #c62828 70%, #8B0000 100%);
  position: relative;
  overflow: hidden;
  padding-top: 70px;
}

.hero-carousel {
  position: relative;
  min-height: calc(100vh - 70px);
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  top: 0; left: 0; right: 0;
  min-height: calc(100vh - 70px);
  display: flex;
  align-items: center;
  opacity: 0;
  transition: opacity 0.8s ease;
  pointer-events: none;
  z-index: 1;
}

.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
  position: relative;
}

.hero-slide-banner {
  justify-content: center;
}

.banner-slide-img {
  width: 100%;
  max-width: 1100px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
  display: block;
  margin: 0 auto;
}

.hero-slide-product {
  justify-content: center;
}

.product-slide-inner {
  display: flex;
  align-items: center;
  gap: 0;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  min-height: 520px;
}

.product-slide-brand {
  flex: 0 0 44%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
  padding: 48px 40px 48px 0;
  text-align: left;
}

.product-brand-banner-wrap {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  animation: float-card 6s ease-in-out infinite;
}

.product-brand-banner {
  width: 100%;
  max-width: 420px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 32px rgba(0,0,0,0.35));
}

.product-brand-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: white;
  padding-left: 4px;
}

.product-brand-name {
  font-size: 20px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.3px;
  white-space: nowrap;
}

.product-brand-sub {
  font-size: 14px;
  opacity: 0.8;
  font-weight: 500;
  color: white;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.4);
  padding-bottom: 2px;
  display: inline-block;
  width: fit-content;
  transition: opacity 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
}

.product-brand-sub:hover {
  opacity: 1;
  border-color: rgba(255,255,255,0.9);
}

.product-slide-divider {
  width: 2px;
  align-self: stretch;
  flex-shrink: 0;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(255,255,255,0.1) 8%,
    rgba(255,255,255,0.75) 30%,
    rgba(255,255,255,1) 50%,
    rgba(255,255,255,0.75) 70%,
    rgba(255,255,255,0.1) 92%,
    transparent 100%
  );
  box-shadow: 0 0 18px rgba(255,255,255,0.3);
  position: relative;
}

.product-slide-divider::before,
.product-slide-divider::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 10px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 0 14px rgba(255,255,255,1), 0 0 28px rgba(255,255,255,0.6);
}

.product-slide-divider::before { top: 20%; }
.product-slide-divider::after  { bottom: 20%; }

.product-slide-content {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 40px 52px;
}

.product-slide-img {
  max-height: 420px;
  max-width: 400px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 48px rgba(0,0,0,0.4));
  flex-shrink: 0;
  animation: float-card 5s ease-in-out infinite;
}

.product-slide-info {
  color: white;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.product-slide-info h3 {
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 900;
  line-height: 1.1;
}

.product-slide-info p {
  font-size: 16px;
  opacity: 0.88;
  line-height: 1.6;
  max-width: 280px;
}

.product-slide-info .btn-primary {
  align-self: flex-start;
  margin-top: 4px;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 30;
  background: rgba(255,255,255,0.18);
  border: 2px solid rgba(255,255,255,0.45);
  color: white;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-btn:hover {
  background: rgba(255,255,255,0.35);
  transform: translateY(-50%) scale(1.1);
}

.carousel-prev { left: 24px; }
.carousel-next { right: 24px; }

.carousel-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 30;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: 2px solid rgba(255,255,255,0.6);
  cursor: pointer;
  transition: all 0.35s ease;
  padding: 0;
}

.carousel-dot.active {
  background: white;
  width: 28px;
  border-radius: 5px;
  border-color: white;
}

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero-bg-shapes::before {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
  top: -200px; right: -100px;
  animation: float-shape 8s ease-in-out infinite;
}

.hero-bg-shapes::after {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
  bottom: -100px; left: -50px;
  animation: float-shape 10s ease-in-out infinite reverse;
}

@keyframes float-shape {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-30px) scale(1.05); }
}

.hero-pills {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.pill {
  position: absolute;
  border-radius: 50px;
  opacity: 0.12;
  animation: drift linear infinite;
}

.pill:nth-child(1) { width: 60px; height: 22px; background: white; top: 20%; left:  5%; animation-duration: 12s; animation-delay:  0s; }
.pill:nth-child(2) { width: 80px; height: 28px; background: white; top: 50%; left: 15%; animation-duration: 15s; animation-delay: -3s; }
.pill:nth-child(3) { width: 50px; height: 18px; background: white; top: 75%; left:  8%; animation-duration: 11s; animation-delay: -6s; }
.pill:nth-child(4) { width: 70px; height: 25px; background: white; top: 35%; right:10%; animation-duration: 13s; animation-delay: -2s; }
.pill:nth-child(5) { width: 55px; height: 20px; background: white; top: 65%; right: 5%; animation-duration: 16s; animation-delay: -8s; }

@keyframes drift {
  0%   { transform: translateX(-20px) rotate(0deg);   opacity: 0.08; }
  50%  { transform: translateX(20px)  rotate(180deg); opacity: 0.15; }
  100% { transform: translateX(-20px) rotate(360deg); opacity: 0.08; }
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

.hero-content { color: white; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(8px);
  color: white;
  padding: 8px 18px;
  border-radius: 24px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
  animation: fadeInDown 0.8s ease both;
}

.hero-badge i { color: #ffd54f; animation: spin-star 4s linear infinite; }

@keyframes spin-star {
  0%, 100% { transform: rotate(0); }
  50%       { transform: rotate(20deg); }
}

.hero-title {
  font-size: clamp(32px, 5vw, 58px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  animation: fadeInDown 0.8s ease 0.1s both;
}

.hero-title span { color: #ffd54f; }

.hero-desc {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.7;
  opacity: 0.9;
  margin-bottom: 36px;
  animation: fadeInDown 0.8s ease 0.2s both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInDown 0.8s ease 0.3s both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  color: var(--red);
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 32px rgba(0,0,0,0.25); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.6);
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-secondary:hover { background: rgba(255,255,255,0.15); border-color: white; transform: translateY(-3px); }

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  animation: fadeInDown 0.8s ease 0.4s both;
}

.stat-item { text-align: center; }
.stat-num   { font-size: 32px; font-weight: 900; color: #ffd54f; display: block; }
.stat-label { font-size: 12px; opacity: 0.85; font-weight: 500; }

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInRight 1s ease 0.3s both;
}

.hero-card-big {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(16px);
  border-radius: 28px;
  padding: 44px 40px;
  text-align: center;
  color: white;
  max-width: 420px;
  width: 100%;
  animation: float-card 6s ease-in-out infinite;
}

@keyframes float-card {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-16px); }
}

.hero-cross {
  width: 130px; height: 130px;
  background: white;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);
  overflow: hidden;
  padding: 6px;
}

.hero-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 0;
}

.hero-card-big h3 { font-size: 24px; font-weight: 800; margin-bottom: 8px; }
.hero-card-big p  { font-size: 15px; opacity: 0.85; line-height: 1.6; }

.hero-card-big .hours-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.2);
  border-radius: 20px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  margin-top: 20px;
}

.hero-card-big .hours-badge i { color: white; }

.delivery-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  border-radius: 20px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  margin-top: 14px;
  box-shadow: 0 6px 20px rgba(46,125,50,0.4);
  color: white;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.delivery-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(46,125,50,0.55);
}

.delivery-badge i {
  font-size: 20px;
  color: white;
}

/* ────────────────────────────────────────
   TICKER
──────────────────────────────────────── */
.ticker-wrap {
  background: #1a1a1a;
  padding: 14px 0;
  overflow: hidden;
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 25s linear infinite;
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  font-size: 14px;
  font-weight: 500;
  padding: 0 40px;
  white-space: nowrap;
}

.ticker-item i { color: #ffd54f; }

@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ────────────────────────────────────────
   SECTIONS — COMMON
──────────────────────────────────────── */
section { padding: 100px 24px; }

.container { max-width: 1200px; margin: 0 auto; width: 100%; }

#hero .container { padding-left: 24px; padding-right: 24px; }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(211,47,47,0.08);
  color: var(--red);
  font-size: 13px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.section-title {
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.2;
  color: var(--gray-900);
  margin-bottom: 16px;
}

.section-title span { color: var(--red); }

.section-desc {
  font-size: 17px;
  color: var(--gray-600);
  line-height: 1.7;
  max-width: 560px;
}

.section-header { margin-bottom: 60px; }

/* ────────────────────────────────────────
   PRODUTOS
──────────────────────────────────────── */
#produtos { background: var(--gray-100); }

.produtos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.produto-card {
  background: white;
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.produto-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 20px;
  z-index: 0;
}

.produto-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 24px 48px rgba(211,47,47,0.2);
}

.produto-card:hover::before           { opacity: 1; }
.produto-card:hover .produto-icon     { background: white; }
.produto-card:hover .produto-icon i   { color: var(--red); }
.produto-card:hover .produto-name     { color: white; }
.produto-card:hover .produto-desc     { color: rgba(255,255,255,0.8); }

.produto-icon {
  width: 80px; height: 80px;
  background: rgba(211,47,47,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
}

.produto-icon i { font-size: 34px; color: var(--red); transition: all 0.4s ease; }

.produto-name {
  font-size: 17px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
  transition: color 0.4s ease;
}

.produto-desc {
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.6;
  position: relative;
  z-index: 1;
  transition: color 0.4s ease;
}

/* ────────────────────────────────────────
   SOBRE
──────────────────────────────────────── */
#sobre { background: white; }

.sobre-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.sobre-visual { position: relative; }

.sobre-main-card {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  border-radius: 28px;
  padding: 48px 40px;
  color: white;
  text-align: center;
  box-shadow: 0 24px 60px rgba(46,125,50,0.35);
  animation: float-card 7s ease-in-out infinite;
}

.sobre-main-card i  { font-size: 64px; margin-bottom: 20px; opacity: 0.9; }
.sobre-main-card h3 { font-size: 28px; font-weight: 800; margin-bottom: 12px; }
.sobre-main-card p  { font-size: 15px; opacity: 0.85; line-height: 1.6; }

.sobre-badge-float {
  position: absolute;
  background: white;
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 12px;
}

.sobre-badge-float.top-right {
  top: -20px; right: -20px;
  animation: float-badge 5s ease-in-out infinite;
}

.sobre-badge-float.bottom-left {
  bottom: -20px; left: -20px;
  animation: float-badge 5s ease-in-out infinite reverse;
}

@keyframes float-badge {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

.badge-icon {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  flex-shrink: 0;
}

.badge-text span:first-child { display: block; font-size: 18px; font-weight: 800; color: var(--gray-900); }
.badge-text span:last-child  { display: block; font-size: 12px; color: var(--gray-600); font-weight: 500; }

.sobre-content .section-desc { max-width: 100%; margin-bottom: 32px; }

.sobre-list { list-style: none; display: flex; flex-direction: column; gap: 16px; }

.sobre-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  font-weight: 500;
  color: var(--gray-900);
}

.sobre-list li .check-icon {
  width: 28px; height: 28px;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 13px;
  flex-shrink: 0;
}

/* ────────────────────────────────────────
   SERVIÇOS
──────────────────────────────────────── */
#servicos { background: var(--gray-100); }

.servicos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.servico-card {
  background: white;
  border-radius: 20px;
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: all 0.4s ease;
  border-top: 4px solid transparent;
}

.servico-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-top-color: var(--red);
}

.servico-num {
  position: absolute;
  top: 20px; right: 24px;
  font-size: 52px;
  font-weight: 900;
  color: rgba(211,47,47,0.06);
  line-height: 1;
}

.servico-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  margin-bottom: 20px;
  box-shadow: 0 8px 20px rgba(211,47,47,0.3);
  transition: transform 0.3s ease;
}

.servico-card:hover .servico-icon { transform: scale(1.1) rotate(-5deg); }

.servico-title { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.servico-desc  { font-size: 14px; color: var(--gray-600); line-height: 1.6; }

/* ────────────────────────────────────────
   DIFERENCIAIS
──────────────────────────────────────── */
#diferenciais { background: white; }

.diferenciais-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.diferenciais-content .section-desc { max-width: 100%; margin-bottom: 40px; }

.diferencial-item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
  padding: 20px;
  border-radius: 16px;
  transition: all 0.3s ease;
}

.diferencial-item:hover { background: var(--gray-100); transform: translateX(8px); }

.diferencial-icon-wrap {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.diferencial-icon-wrap.red   { background: rgba(211,47,47,0.1); color: var(--red); }
.diferencial-icon-wrap.green { background: rgba(46,125,50,0.1);  color: var(--green); }

.diferencial-text h4 { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.diferencial-text p  { font-size: 14px; color: var(--gray-600); line-height: 1.6; }

.diferenciais-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.mini-card {
  background: var(--gray-100);
  border-radius: 20px;
  padding: 28px 22px;
  text-align: center;
  transition: all 0.4s ease;
}

.mini-card:first-child { grid-column: span 2; background: linear-gradient(135deg, var(--red), var(--red-dark)); color: white; }
.mini-card:first-child .mini-icon  { background: rgba(255,255,255,0.2); color: white; }
.mini-card:first-child .mini-title { color: white; }
.mini-card:first-child .mini-desc  { color: rgba(255,255,255,0.8); }

.mini-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }

.mini-icon {
  width: 52px; height: 52px;
  background: white;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--red);
  margin: 0 auto 14px;
}

.mini-title { font-size: 16px; font-weight: 700; color: var(--gray-900); margin-bottom: 6px; }
.mini-desc  { font-size: 13px; color: var(--gray-600); }

/* ────────────────────────────────────────
   CTA BAND
──────────────────────────────────────── */
.cta-band {
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  padding: 80px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
  top: -200px; right: -100px;
}

.cta-band::after {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
  bottom: -100px; left: -50px;
}

.cta-band h2 { font-size: clamp(22px, 4vw, 40px); font-weight: 800; color: white; margin-bottom: 16px; }
.cta-band p  { font-size: 18px; color: rgba(255,255,255,0.85); margin-bottom: 36px; }

.cta-band .btn-primary { font-size: 16px; padding: 16px 36px; }
.cta-band .btn-primary:hover { transform: translateY(-4px); }

/* ────────────────────────────────────────
   CONTATO
──────────────────────────────────────── */
#contato { background: var(--gray-100); }

.contato-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
}

.contato-info { display: flex; flex-direction: column; gap: 20px; }

.contato-card {
  background: white;
  border-radius: 18px;
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
}

.contato-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.contato-card-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.contato-card-icon.red  { background: rgba(211,47,47,0.1);  color: var(--red); }
.contato-card-icon.green{ background: rgba(46,125,50,0.1);   color: var(--green); }
.contato-card-icon.blue { background: rgba(25,118,210,0.1);  color: #1976d2; }

.contato-card-text h4 { font-size: 14px; font-weight: 700; color: var(--gray-900); margin-bottom: 4px; }
.contato-card-text p,
.contato-card-text a {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.5;
  text-decoration: none;
}

.contato-card-text a:hover { color: var(--red); }

.whatsapp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #25d366;
  color: white;
  padding: 14px 24px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(37,211,102,0.35);
  transition: all 0.3s ease;
}

.whatsapp-btn:hover { background: #20ba5a; transform: translateY(-3px); box-shadow: 0 14px 32px rgba(37,211,102,0.45); }

.contato-detail-card {
  background: white;
  border-radius: 24px;
  padding: 32px;
  box-shadow: var(--shadow);
}

.contato-detail-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.contato-detail-card > p { color: var(--gray-600); font-size: 14px; margin-bottom: 24px; }

.contato-mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

.contato-mini-item {
  background: var(--gray-100);
  border-radius: 14px;
  padding: 16px;
  text-align: center;
}

.contato-mini-item i { font-size: 28px; margin-bottom: 8px; display: block; }
.contato-mini-item span { font-size: 13px; font-weight: 600; }

.contato-hours {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  border-radius: 16px;
  padding: 20px;
  color: white;
  text-align: center;
}

.contato-hours i { font-size: 24px; margin-bottom: 10px; display: block; }
.contato-hours p:first-of-type { font-weight: 700; font-size: 15px; margin-bottom: 4px; }
.contato-hours p:last-of-type  { font-size: 14px; opacity: 0.85; }

/* ────────────────────────────────────────
   MAPA
──────────────────────────────────────── */
#mapa { background: white; padding: 100px 24px; }

.mapa-inner { max-width: 1200px; margin: 0 auto; }

.map-wrap {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 480px;
  position: relative;
}

.map-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ────────────────────────────────────────
   FOOTER
──────────────────────────────────────── */
footer {
  background: #1a1a1a;
  color: rgba(255,255,255,0.7);
  padding: 60px 24px 30px;
}

.footer-inner { max-width: 1200px; margin: 0 auto; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 12px;
}

.footer-logo-img {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
}

.footer-brand p { font-size: 14px; line-height: 1.7; margin-top: 4px; }

.footer-col h4 { font-size: 15px; font-weight: 700; color: white; margin-bottom: 20px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 14px; color: rgba(255,255,255,0.6); text-decoration: none; transition: color 0.2s ease; }
.footer-col ul li a:hover { color: white; }

.footer-socials { display: flex; gap: 12px; margin-top: 20px; }

.social-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7);
  font-size: 16px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-btn:hover { background: var(--red); color: white; transform: translateY(-3px); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}

.footer-bottom span { color: rgba(255,255,255,0.4); }

/* ────────────────────────────────────────
   FLOATING BUTTONS
──────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 90px; right: 28px;
  z-index: 9999;
  width: 56px; height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 26px;
  box-shadow: 0 8px 24px rgba(37,211,102,0.5);
  text-decoration: none;
  transition: all 0.3s ease;
  animation: whatsapp-pulse 3s ease-in-out infinite;
}

.whatsapp-float:hover { transform: scale(1.15); }

@keyframes whatsapp-pulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(37,211,102,0.5); }
  50%       { box-shadow: 0 8px 40px rgba(37,211,102,0.8), 0 0 0 12px rgba(37,211,102,0.1); }
}

.scroll-top {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 9999;
  width: 48px; height: 48px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  box-shadow: 0 6px 20px rgba(211,47,47,0.4);
  cursor: pointer;
  text-decoration: none;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
  border: none;
}

.scroll-top.show { opacity: 1; transform: translateY(0); }
.scroll-top:hover { background: var(--red-dark); transform: translateY(-4px); }

/* ────────────────────────────────────────
   ANIMATIONS
──────────────────────────────────────── */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left.visible { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ────────────────────────────────────────
   RESPONSIVE — TABLET  (≤ 1024px)
──────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner     { gap: 40px; }
  .sobre-inner    { gap: 50px; }
  .diferenciais-inner { gap: 50px; }
  .footer-grid    { grid-template-columns: 1fr 1fr; gap: 36px; }
}

/* ────────────────────────────────────────
   RESPONSIVE — TABLET  (≤ 900px)
──────────────────────────────────────── */
@media (max-width: 900px) {
  .product-slide-inner  { flex-direction: column; gap: 24px; min-height: auto; padding: 40px 0; width: 100%; }
  .product-slide-brand  { flex: none; width: 100%; padding: 0 24px; }
  .product-slide-banner { max-width: 220px; }
  .product-slide-divider { display: none; }
  .product-slide-content { flex-direction: column; align-items: center; padding: 0 24px; text-align: center; }
  .product-slide-info .btn-primary { align-self: center; }
  .product-slide-info p { max-width: 100%; }
  .carousel-btn { width: 40px; height: 40px; font-size: 14px; }
  .carousel-prev { left: 12px; }
  .carousel-next { right: 12px; }

  .nav-links   { display: none; }
  .nav-cta     { display: none; }
  .hamburger   { display: flex; }

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .hero-visual { order: -1; }
  .hero-actions { justify-content: center; }
  .hero-stats   { justify-content: center; }

  .sobre-inner        { grid-template-columns: 1fr; gap: 60px; }
  .sobre-badge-float  { display: none; }

  .servicos-grid { grid-template-columns: 1fr 1fr; }

  .diferenciais-inner { grid-template-columns: 1fr; gap: 40px; }

  .contato-inner { grid-template-columns: 1fr; display: flex; flex-direction: column; gap: 32px; }
  .contato-detail-card { width: 100%; box-sizing: border-box; }

  .produtos-grid { grid-template-columns: 1fr 1fr 1fr; }
}

/* ────────────────────────────────────────
   RESPONSIVE — MOBILE  (≤ 640px)
──────────────────────────────────────── */
@media (max-width: 640px) {
  section { padding: 70px 20px; }
  #mapa   { padding: 70px 20px; }

  .hero-inner { padding: 40px 20px; }

  .hero-title  { font-size: clamp(28px, 8vw, 40px); }
  .hero-desc   { font-size: 15px; }

  .hero-stats {
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }

  .stat-item { min-width: 80px; }

  .hero-card-big {
    padding: 28px 20px;
    max-width: 100%;
  }

  .hero-cross { width: 90px; height: 90px; }

  .section-header { margin-bottom: 36px; }

  .produtos-grid { grid-template-columns: 1fr 1fr; gap: 16px; }

  .sobre-main-card { padding: 32px 24px; }
  .sobre-main-card i  { font-size: 48px; }
  .sobre-main-card h3 { font-size: 22px; }

  .servicos-grid { grid-template-columns: 1fr; gap: 16px; }

  .diferenciais-visual { grid-template-columns: 1fr 1fr; }
  .mini-card:first-child { grid-column: span 2; }

  .contato-mini-grid { grid-template-columns: 1fr 1fr; }

  .map-wrap { height: 340px; }

  .footer-grid    { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom  { flex-direction: column; gap: 8px; text-align: center; }

  .cta-band { padding: 60px 20px; }
  .cta-band p { font-size: 15px; }
}

/* ────────────────────────────────────────
   RESPONSIVE — SMALL MOBILE  (≤ 400px)
──────────────────────────────────────── */
@media (max-width: 400px) {
  .produtos-grid     { grid-template-columns: 1fr; }
  .diferenciais-visual { grid-template-columns: 1fr; }
  .mini-card:first-child { grid-column: span 1; }
  .contato-mini-grid { grid-template-columns: 1fr 1fr; }
  .hero-actions { flex-direction: column; align-items: center; }
  .btn-primary,
  .btn-secondary { width: 100%; justify-content: center; }
}
