:root {
  /* ── Palette: ultra-dark premium ── */
  --bg: #050505;
  --bg-soft: #0a0a0a;
  --surface: #121212;
  --card: #151515;
  --card-hover: #1a1a1a;
  --border: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(255, 255, 255, 0.15);

  /* ── Text ── */
  --text: #f5f5f5;
  --text-secondary: #a0a0a0;
  --muted: #666666;

  /* ── Accents (minimal) ── */
  --accent: #ffffff;
  --accent-dim: rgba(255, 255, 255, 0.5);

  /* ── System ── */
  --font-logo: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --radius: 4px;
  --radius-lg: 8px;
  --max: 1400px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ─────────────── Reset ─────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: auto; }

body {
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ─────────────── Typography ─────────────── */
h1, h2, h3, .badge, .btn, .stat strong, .service-number {
  font-family: "Bebas Neue", "Inter", sans-serif;
  letter-spacing: 1px;
}

h1 {
  font-size: clamp(3.5rem, 8vw, 6rem);
  line-height: 0.95;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 24px;
}

h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 24px;
}

h3 {
  font-size: 1.5rem;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--muted);
  margin-bottom: 16px;
  display: block;
}

::selection {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

/* ─────────────── Background Glow ─────────────── */
.bg-noise {
  position: fixed;
  inset: 0;
  z-index: -1;
  background: 
    radial-gradient(ellipse 60% 60% at 20% 0%, rgba(100, 50, 255, 0.05), transparent 70%),
    radial-gradient(ellipse 70% 60% at 80% 100%, rgba(50, 150, 255, 0.05), transparent 70%);
  pointer-events: none;
}

/* ═══════ DECORATIVOS ═══════ */
.deco {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

/* Shapes grandes */
.deco-shape {
  position: absolute;
}
.deco-ring-1 { width: 300px; height: 300px; top: -80px; right: -80px; animation: deco-spin 40s linear infinite; }
.deco-ring-2 { width: 250px; height: 250px; top: 40%; left: -60px; animation: deco-spin 35s linear infinite reverse; }
.deco-ring-3 { width: 200px; height: 200px; bottom: 15%; right: 5%; animation: deco-spin 45s linear infinite; }
.deco-box-1 { width: 180px; height: 180px; top: 20%; right: 15%; animation: deco-spin 50s linear infinite reverse; }
.deco-box-2 { width: 140px; height: 140px; bottom: 25%; left: 10%; animation: deco-spin 40s linear infinite; }
.deco-tri-1 { width: 160px; height: 160px; top: 50%; right: 25%; animation: deco-float 20s ease-in-out infinite; }
.deco-tri-2 { width: 120px; height: 120px; bottom: 35%; left: 20%; animation: deco-float 18s ease-in-out infinite; animation-delay: -5s; }

/* Sólidos */
.deco-solid {
  position: absolute;
  border-radius: 50%;
}
.deco-solid-1 { width: 8px; height: 8px; background: rgba(59,130,246,0.2); top: 15%; left: 10%; animation: deco-float 15s ease-in-out infinite; }
.deco-solid-2 { width: 6px; height: 6px; background: rgba(16,185,129,0.15); top: 45%; right: 12%; animation: deco-float 12s ease-in-out infinite; animation-delay: -3s; }
.deco-solid-3 { width: 10px; height: 10px; background: rgba(255,255,255,0.1); bottom: 20%; left: 15%; animation: deco-float 18s ease-in-out infinite; animation-delay: -7s; }
.deco-solid-4 { width: 5px; height: 5px; background: rgba(59,130,246,0.15); top: 70%; right: 20%; animation: deco-float 14s ease-in-out infinite; animation-delay: -5s; }
.deco-solid-5 { width: 7px; height: 7px; background: rgba(16,185,129,0.12); bottom: 40%; left: 30%; animation: deco-float 16s ease-in-out infinite; animation-delay: -9s; }

/* Strokes menores */
.deco-mini {
  position: absolute;
}
.deco-mini-1 { width: 60px; height: 60px; top: 30%; left: 25%; animation: deco-spin 25s linear infinite; }
.deco-mini-2 { width: 50px; height: 50px; top: 60%; right: 30%; animation: deco-spin 20s linear infinite reverse; }
.deco-mini-3 { width: 45px; height: 45px; bottom: 30%; left: 40%; animation: deco-float 22s ease-in-out infinite; }

/* ═══════ ANIMAÇÕES ═══════ */
@keyframes deco-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

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

/* ─────────────── Navbar ─────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 5vw;
  z-index: 50;
  transition: all .5s var(--ease-out);
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  background: rgba(5, 5, 5, .9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 16px 5vw;
}

.nav-links { display: flex; gap: 40px; align-items: center; }
.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: .75rem;
  transition: color .3s var(--ease-out);
}
.nav-links a:hover { color: var(--text); }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; flex-direction: column; gap: 5px; padding: 4px; }
.nav-toggle span { width: 24px; height: 1.5px; background: var(--text); transition: .3s var(--ease-out); }

.nav-actions { display: flex; align-items: center; gap: 16px; }
.logo-svg { height: 32px; width: auto; opacity: 0.9; transition: opacity .3s; }
.logo-link:hover .logo-svg { opacity: 1; }

.btn-nav {
  border: 1px solid var(--border);
  padding: 10px 20px;
  font-size: 0.7rem;
}
.btn-nav:hover {
  background: var(--text);
  color: var(--bg);
}

/* ─────────────── Buttons ─────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: .8rem;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all .3s var(--ease-out);
}
.btn-primary {
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
}
.btn-primary:hover {
  background: transparent;
  color: var(--text);
}
.btn-ghost {
  border-color: var(--border);
  color: var(--text);
  background: transparent;
}
.btn-ghost:hover {
  border-color: var(--text);
}

/* ─────────────── Hero ─────────────── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  padding: 120px 5vw 80px;
  max-width: var(--max);
  margin: 0 auto;
  gap: 60px;
  background: #050505;
  position: relative;
  overflow: hidden;
}
.hero-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.04;
  filter: blur(80px);
}
.shape-1 {
  width: 300px;
  height: 300px;
  background: #ffffff;
  top: 10%;
  left: -5%;
  animation: shapeFloat1 6s ease-in-out infinite;
}
.shape-2 {
  width: 200px;
  height: 200px;
  background: #ffffff;
  top: 60%;
  left: 15%;
  animation: shapeFloat2 8s ease-in-out infinite 1s;
}
.shape-3 {
  width: 250px;
  height: 250px;
  background: #ffffff;
  top: 20%;
  right: 10%;
  animation: shapeFloat3 7s ease-in-out infinite 0.5s;
}
.shape-4 {
  width: 180px;
  height: 180px;
  background: #ffffff;
  bottom: 15%;
  right: 25%;
  animation: shapeFloat4 9s ease-in-out infinite 2s;
}
.shape-5 {
  width: 150px;
  height: 150px;
  background: #ffffff;
  bottom: 30%;
  left: 40%;
  animation: shapeFloat5 7s ease-in-out infinite 1.5s;
}
.shape-6 {
  width: 120px;
  height: 120px;
  background: #ffffff;
  top: 45%;
  right: 35%;
  animation: shapeFloat6 5s ease-in-out infinite 0.8s;
}
.shape-7 {
  width: 220px;
  height: 220px;
  background: #ffffff;
  top: 75%;
  right: 5%;
  animation: shapeFloat7 10s ease-in-out infinite 3s;
}
.shape-8 {
  width: 100px;
  height: 100px;
  background: #ffffff;
  top: 5%;
  left: 30%;
  animation: shapeFloat8 6s ease-in-out infinite 2.5s;
}
@keyframes shapeFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(20px, -25px) scale(1.08); }
  66% { transform: translate(-15px, 15px) scale(0.95); }
}
@keyframes shapeFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(-20px, -15px) scale(1.1); }
  50% { transform: translate(10px, 20px) scale(0.92); }
  75% { transform: translate(25px, -10px) scale(1.05); }
}
@keyframes shapeFloat3 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(-30px, 20px) rotate(180deg); }
}
@keyframes shapeFloat4 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(15px, -20px) scale(1.12); }
  66% { transform: translate(-20px, -10px) scale(0.9); }
}
@keyframes shapeFloat5 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(25px, -30px); }
}
@keyframes shapeFloat6 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-15px, 25px) scale(1.15); }
}
@keyframes shapeFloat7 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(-10px, -20px) scale(1.05); }
  50% { transform: translate(20px, 10px) scale(0.95); }
  75% { transform: translate(-25px, 15px) scale(1.08); }
}
@keyframes shapeFloat8 {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(20px, 15px); }
  66% { transform: translate(-10px, -20px); }
}
.hero-content { max-width: 600px; position: relative; z-index: 1; }
@media (min-width: 2000px) {
  .hero-content { max-width: 800px; }
  .shape-1 { width: 500px; height: 500px; }
  .shape-2 { width: 350px; height: 350px; }
  .shape-3 { width: 420px; height: 420px; }
  .shape-4 { width: 300px; height: 300px; }
  .shape-5 { width: 260px; height: 260px; }
  .shape-6 { width: 200px; height: 200px; }
  .shape-7 { width: 380px; height: 380px; }
  .shape-8 { width: 170px; height: 170px; }
}
.hero-mascote-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.hero-mascote {
  width: 380px;
  height: auto;
  filter: drop-shadow(0 12px 40px rgba(0,0,0,0.5));
  animation: mascotFloat 3s ease-in-out infinite;
}
@keyframes mascotFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

.badge {
  display: inline-flex;
  align-items: center;
  font-size: .7rem;
  letter-spacing: 3px;
  color: var(--text-secondary);
  margin-bottom: 24px;
}
.badge::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--text);
  margin-right: 12px;
}

.lead {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 40px;
  line-height: 1.6;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ─────────────── Stats Bar ─────────────── */
.stats-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-soft);
}
.stats-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 40px 5vw;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: center;
}
.stat strong {
  font-size: 3rem;
  line-height: 1;
  color: var(--text);
}
.stat span {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--muted);
}
.stat-divider {
  width: 1px;
  height: 60px;
  background: var(--border);
}

/* ─────────────── Sections ─────────────── */
.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 120px 5vw;
  position: relative;
  z-index: 1;
}
.section--dark {
  background: var(--bg-soft);
  max-width: 100%;
}
.section--dark .section-head, .section--dark .services-grid {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}

/* ─────────────── Section Colors ─────────────── */
.section--color-1 { background: #0a0a0a; max-width: 100%; padding-top: 40px; }
.section--color-1 .about-layout { max-width: var(--max); margin: 0 auto; }

.section--color-2 { background: #080808; max-width: 100%; }
.section--color-2 .section-head, .section--color-2 .services-grid, .section--color-2 .feedback-layout { max-width: var(--max); margin-left: auto; margin-right: auto; }

.section--color-3 { background: #0d0d0d; max-width: 100%; }
.section--color-3 .cta-content, .section--color-3 .cta-images { max-width: var(--max); margin: 0 auto; }

.section--color-4 { background: #050505; max-width: 100%; }
.section--color-4 .section-head, .section--color-4 .gallery-list, .section--color-4 .gallery-marquee-section { max-width: var(--max); margin-left: auto; margin-right: auto; }

.section--color-5 { background: #090909; max-width: 100%; }
.section--color-5 .section-head, .section--color-5 .testimonials-grid { max-width: var(--max); margin-left: auto; margin-right: auto; }

.section--color-6 { background: #050505; max-width: 100%; }
.section--color-6 .contact-layout { max-width: var(--max); margin: 0 auto; }

/* ─────────────── Section Dividers ─────────────── */
.section-divider {
  width: 100%;
  line-height: 0;
  margin: -1px 0;
  position: relative;
  z-index: 2;
}
.section-divider svg {
  display: block;
  width: 100%;
  height: auto;
}
.divider-wave-1 { margin-bottom: -2px; }
.divider-slash-1 { margin-bottom: -1px; }
.divider-curve-1 { margin-top: -1px; margin-bottom: -1px; }
.divider-wavy-1 { margin-top: -1px; margin-bottom: -1px; }
.divider-block-1 { margin-top: -1px; margin-bottom: -1px; }
.divider-zigzag-1 { margin-top: -1px; }
.divider-hero { margin-top: -4px; margin-bottom: 0; }

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

/* ─────────────── About Layout ─────────────── */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.about-desc {
  color: var(--text-secondary);
  margin-bottom: 0;
  font-size: 1.1rem;
  line-height: 1.8;
}
.about-mascote {
  width: 520px;
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 50px rgba(0,0,0,0.6)) drop-shadow(0 0 80px rgba(79, 143, 250, 0.2));
  animation: mascotFloat 3s ease-in-out infinite;
  display: block;
  margin: 56px 0 0;
  margin-left: auto;
  margin-right: auto;
  transition: filter .4s ease;
}
.about-mascote:hover {
  filter: drop-shadow(0 24px 60px rgba(0,0,0,0.7)) drop-shadow(0 0 100px rgba(79, 143, 250, 0.4));
}
.about-left {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.about-left h2 {
  background: linear-gradient(135deg, #ffffff 0%, #a0a0a0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.about-right {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.about-card {
  padding: 40px;
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color .3s, box-shadow .3s;
}
.about-card:hover {
  border-color: rgba(79, 143, 250, 0.3);
  box-shadow: 0 0 30px rgba(79, 143, 250, 0.08);
}
.about-card-icon {
  color: var(--text);
  opacity: 0.8;
}
.about-card h3 { margin-bottom: 0; font-size: 1.4rem; }
.about-card p { color: var(--text-secondary); font-size: 1rem; line-height: 1.7; }

/* ─────────────── Services Grid ─────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 48px 32px;
  transition: background .3s, border-color .3s;
}
.service-card:hover {
  background: var(--surface);
  border-color: var(--border-hover);
}
.service-number {
  font-size: 2rem;
  color: var(--muted);
  margin-bottom: 24px;
}
.service-card h3 { font-size: 1.25rem; }
.service-card p { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.6; }

/* ─────────────── Machinery (Maquinário) ─────────────── */
.machinery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
}
.machinery-card {
  background: var(--surface);
  border: 1px solid var(--border);
  transition: transform .4s, border-color .4s;
  overflow: hidden;
}
.machinery-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-hover);
}
.machinery-img {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
}
.machinery-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease-out);
}
.machinery-card:hover .machinery-img img {
  transform: scale(1.05);
}
.machinery-badge {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--bg);
  color: var(--text);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 6px 12px;
  border: 1px solid var(--border);
  z-index: 10;
}
.badge-sale {
  background: var(--text);
  color: var(--bg);
}
.machinery-info {
  padding: 32px;
}
.machinery-info h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}
.machinery-info p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ─────────────── Gallery ─────────────── */
.gallery-list { display: flex; flex-direction: column; gap: 40px; margin-bottom: 80px; }
.gallery-row {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  align-items: center;
}
.gallery-row.reverse { grid-template-columns: 1fr 1.5fr; }
.gallery-row.reverse .gallery-photo { order: 2; }
.gallery-photo {
  overflow: hidden;
  background: var(--surface);
}
.gallery-photo img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
  transition: transform .8s var(--ease-out), filter .5s;
}
.gallery-row:hover .gallery-photo img {
  transform: scale(1.04);
}
.gallery-tag {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text);
  border: 1px solid var(--border);
  padding: 4px 12px;
  display: inline-block;
  margin-bottom: 16px;
}
.gallery-text p { color: var(--text-secondary); }

.gallery-marquee-section { padding-top: 40px; }
.marquee-title { text-align: center; color: var(--muted); margin-bottom: 32px; font-size: 1rem; }

/* ─────────────── Equipamentos Marquee Infinito ─────────────── */
.equip-marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  padding: 20px 0;
}
.equip-marquee-track {
  display: flex;
  width: max-content;
  animation: equipScroll 35s linear infinite;
}
.equip-marquee-item {
  width: 380px;
  margin: 0 16px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
  transition: all .4s var(--ease-out);
}
.equip-marquee-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  transition: transform .5s var(--ease-out);
}
.equip-marquee-item:hover {
  transform: scale(1.05);
  z-index: 2;
  box-shadow: 0 16px 40px rgba(0,0,0,0.5);
}
.equip-marquee-item:hover img {
  transform: scale(1.08);
}
@keyframes equipScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─────────────── Contact Layout ─────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
}
.contact-desc { color: var(--text-secondary); margin-bottom: 48px; font-size: 1.05rem; max-width: 400px; }
.contact-details { display: flex; flex-direction: column; gap: 32px; }
.contact-item { display: flex; gap: 20px; align-items: flex-start; }
.contact-item svg { color: var(--muted); margin-top: 4px; }
.contact-item-label { display: block; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 2px; color: var(--muted); margin-bottom: 4px; }
.contact-item-value { display: block; font-size: 1.1rem; color: var(--text); }

.contact-form {
  background: var(--bg-soft);
  padding: 48px;
  border: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.field { display: flex; flex-direction: column; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: .75rem; text-transform: uppercase; letter-spacing: 2px; color: var(--muted); margin-bottom: 12px; }
.field input, .field textarea {
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 16px;
  color: var(--text);
  font-family: inherit;
  font-size: 1rem;
  resize: vertical;
  transition: border-color .3s;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--text); }
.btn-form { grid-column: 1 / -1; display: flex; gap: 12px; margin-top: 16px; }
.form-feedback { grid-column: 1 / -1; color: var(--text-secondary); font-size: .9rem; }

/* ─────────────── Footer ─────────────── */
.footer {
  background: #030303;
  border-top: 1px solid var(--border);
}
.footer-top {
  max-width: var(--max);
  margin: 0 auto;
  padding: 80px 5vw;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
}
.footer-logo-svg { height: 32px; width: auto; opacity: 0.8; margin-bottom: 24px; }
.footer-tagline { color: var(--muted); max-width: 300px; }
.footer-col h4 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 24px; color: var(--text); }
.footer-col a {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-secondary);
  text-decoration: none;
  margin-bottom: 16px;
  transition: color .3s;
}
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 24px 5vw;
  text-align: center;
  color: var(--muted);
  font-size: 0.85rem;
}

/* ─────────────── WhatsApp Float ─────────────── */
.wa-float {
  position: fixed;
  bottom: 32px; right: 32px;
  width: 56px; height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  z-index: 100;
  transition: transform .3s;
}
.wa-float:hover { transform: scale(1.1); }
.wa-icon { width: 28px; height: 28px; fill: #fff; }

.scroll-progress {
  position: fixed; top: 0; left: 0; height: 2px; background: var(--text); z-index: 200; pointer-events: none;
}

/* ─────────────── Depoimentos ─────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}
.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all .3s var(--ease-out);
}
.testimonial-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
}
.testimonial-stars {
  color: #fbbf24;
  font-size: 1rem;
  margin-bottom: 16px;
}
.testimonial-text {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 24px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 40px;
  height: 40px;
  background: var(--bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text);
}
.testimonial-name {
  font-weight: 500;
  font-size: 0.9rem;
}

/* ─────────────── Amigos da Box11 (Slider Full) ─────────────── */
.section-full {
  width: 100%;
  padding: 80px 5vw;
  background: var(--bg-soft);
}
.friends-slider {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}
.friends-slide {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: center;
  min-height: 500px;
  animation: fadeSlide 0.8s ease;
}
.friends-slide.active {
  display: grid;
}
@keyframes fadeSlide {
  from { opacity: 0; }
  to { opacity: 1; }
}
.friends-slide-img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  overflow: hidden;
}
.friends-slide-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.friends-slide-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 60px 80px;
}
.friends-slide-info h3 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.1;
}
.friends-slide-info p {
  color: var(--text-secondary);
  font-size: 1.15rem;
  line-height: 1.7;
}
.friends-slide-info .friends-label {
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
}
.friends-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
}
.friends-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--muted);
  border: none;
  cursor: pointer;
  transition: all .3s;
}
.friends-dot.active {
  background: var(--text);
  width: 32px;
  border-radius: 6px;
}

/* ─────────────── Arcade Icons Marquee ─────────────── */
.arcade-icons-section {
  padding: 40px 0;
  overflow: hidden;
  background: #070707;
  position: relative;
}
.arcade-icons-marquee {
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
}
.arcade-icons-track {
  display: flex;
  gap: 60px;
  animation: scroll-icons 30s linear infinite;
  width: max-content;
}
.arcade-icon {
  width: 60px;
  height: 60px;
  opacity: 0.5;
  transition: opacity .3s, transform .3s;
  flex-shrink: 0;
  filter: grayscale(0.3);
}
.arcade-icon:hover {
  opacity: 1;
  transform: scale(1.2);
  filter: grayscale(0);
}
@keyframes scroll-icons {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Ícones Espalhados (Decorativos) ── */
.scattered-icons {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.scattered-icon {
  position: absolute;
  opacity: 0.04;
  animation: float-icon 20s ease-in-out infinite;
}
.scattered-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.scattered-icon:nth-child(1) { width: 80px; height: 80px; top: 10%; left: 5%; animation-delay: 0s; }
.scattered-icon:nth-child(2) { width: 60px; height: 60px; top: 20%; right: 8%; animation-delay: -4s; }
.scattered-icon:nth-child(3) { width: 100px; height: 100px; bottom: 15%; left: 10%; animation-delay: -8s; }
.scattered-icon:nth-child(4) { width: 50px; height: 50px; top: 60%; right: 15%; animation-delay: -12s; }
.scattered-icon:nth-child(5) { width: 70px; height: 70px; bottom: 30%; right: 5%; animation-delay: -16s; }
.scattered-icon:nth-child(6) { width: 45px; height: 45px; top: 40%; left: 3%; animation-delay: -6s; }

@keyframes float-icon {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-15px) rotate(5deg); }
  50% { transform: translateY(0) rotate(0deg); }
  75% { transform: translateY(15px) rotate(-5deg); }
}

/* ─────────────── Footer Bottom ─────────────── */
.footer-bottom {
  text-align: center;
  padding: 24px 0;
  border-top: 1px solid var(--border);
}
.admin-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--muted);
  border-radius: 50%;
  opacity: 0.3;
  transition: all .3s;
}
.admin-dot:hover {
  opacity: 1;
  background: var(--text);
  transform: scale(1.5);
}

/* ─────────────── Products Showcase ─────────────── */
.products-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
}
.product-showcase-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all .35s var(--ease-out);
}
.product-showcase-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-6px);
}
.product-showcase-img {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.product-showcase-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease-out);
}
.product-showcase-card:hover .product-showcase-img img {
  transform: scale(1.06);
}
.product-showcase-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 5px 12px;
  border-radius: 99px;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  backdrop-filter: blur(12px);
}
.product-showcase-badge.badge-available {
  background: rgba(52, 211, 153, 0.15);
  color: #34d399;
  border: 1px solid rgba(52, 211, 153, 0.3);
}
.product-showcase-badge.badge-rented {
  background: rgba(79, 143, 250, 0.15);
  color: #4f8ffa;
  border: 1px solid rgba(79, 143, 250, 0.3);
}
.product-showcase-body {
  padding: 24px;
}
.product-showcase-body h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  letter-spacing: 1px;
  margin-bottom: 6px;
}
.product-showcase-desc {
  color: var(--text-secondary);
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 16px;
}
.product-showcase-prices {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 14px;
  background: var(--bg);
  border-radius: var(--radius);
  margin-bottom: 18px;
}
.product-showcase-price {
  text-align: center;
}
.product-showcase-price-label {
  display: block;
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted);
  margin-bottom: 4px;
  font-weight: 500;
}
.product-showcase-price-value {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: #34d399;
}
.product-showcase-actions {
  display: flex;
  gap: 10px;
}
.product-showcase-actions .btn {
  flex: 1;
  justify-content: center;
}
.product-showcase-empty {
  color: var(--muted);
  text-align: center;
  grid-column: 1/-1;
  padding: 60px 24px;
  font-size: 0.95rem;
}

/* ─────────────── CTA Aluguel ─────────────── */
.cta-aluguel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.cta-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
}
.cta-desc {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-bottom: 32px;
  max-width: 400px;
}
.cta-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.cta-images img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.cta-images img:first-child {
  margin-top: 40px;
}

/* ─────────────── Feedback Form ─────────────── */
.feedback-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.feedback-desc {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-bottom: 32px;
  max-width: 400px;
}
.feedback-tips {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.feedback-tip {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-secondary);
  font-size: 0.95rem;
}
.feedback-tip svg { color: var(--text); opacity: 0.7; flex-shrink: 0; }

.feedback-form {
  background: var(--bg-soft);
  padding: 48px;
  border: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.feedback-form .field.full { grid-column: 1 / -1; }
.feedback-form .btn-form { grid-column: 1 / -1; display: flex; gap: 12px; margin-top: 8px; justify-content: center; }
.feedback-form .form-feedback { grid-column: 1 / -1; text-align: center; }

.star-rating {
  display: flex;
  gap: 8px;
}
.star-rating .star {
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--muted);
  cursor: pointer;
  transition: color .2s, transform .2s;
  padding: 0;
  line-height: 1;
}
.star-rating .star:hover,
.star-rating .star.active {
  color: #fbbf24;
  transform: scale(1.15);
}

/* ─────────────── Responsive ─────────────── */

/* Tablet */
@media (max-width: 1024px) {
  .hero { gap: 50px; padding: 130px 5vw 70px; }
  .hero-mascote { width: 320px; }
  .hero-content { max-width: 520px; }
  h1 { font-size: clamp(2.8rem, 6vw, 4.2rem); }
  h2 { font-size: clamp(2.2rem, 5vw, 3.2rem); }
  .lead { font-size: 1.05rem; }
  .stat strong { font-size: 2.8rem; }
  .stat span { font-size: 0.72rem; }
  .services-grid { gap: 20px; }
  .service-card { padding: 36px 28px; }
  .service-card h3 { font-size: 1.15rem; }
  .service-card p { font-size: 0.9rem; }
  .gallery-photo img { height: 360px; }
  .equip-marquee-item { width: 340px; }
  .equip-marquee-item img { height: 260px; }
  .friends-slide { min-height: 440px; }
  .friends-slide-img { min-height: 440px; }
  .friends-slide-info { padding: 40px 60px; }
  .friends-slide-info h3 { font-size: 2.2rem; }
  .friends-slide-info p { font-size: 1.05rem; }
  .about-layout, .contact-layout, .feedback-layout { gap: 50px; }
  .about-mascote { width: 400px; }
  .stats-inner { gap: 28px; }
  .stat-divider { display: none; }
  .testimonial-card { padding: 28px; }
  .testimonial-text { font-size: 0.95rem; }
}

/* ═══════ Mobile (até 768px) ═══════ */
@media (max-width: 768px) {

  /* ── Navbar ── */
  .nav-links {
    position: fixed; top: 0; right: 0; width: 100%; height: 100vh;
    background: rgba(5,5,5,0.98); backdrop-filter: blur(12px);
    flex-direction: column; justify-content: center;
    transform: translateX(100%); padding: 40px; border: none;
    gap: 28px; z-index: 100;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-toggle { display: flex; z-index: 110; }
  .btn-nav { display: none; }
  .navbar { padding: 14px 5vw; }
  .navbar.scrolled { padding: 10px 5vw; }
  .nav-links a { font-size: 1.1rem; letter-spacing: 2px; }

  /* ── Hero: 1 coluna, centralizado ── */
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 100px 6vw 50px;
    min-height: auto;
    gap: 0;
  }
  .hero-mascote-wrap { order: -1; margin-bottom: 24px; }
  .hero-mascote { width: 200px; }
  .hero-content { margin: 0 auto; max-width: 100%; }
  h1 { font-size: 2.6rem; line-height: 1; }
  h2 { font-size: 2rem; }
  .lead { font-size: 1rem; line-height: 1.7; margin-bottom: 28px; max-width: 420px; margin-left: auto; margin-right: auto; }
  .badge { font-size: 0.65rem; letter-spacing: 3px; margin-bottom: 20px; }
  .hero-actions { justify-content: center; gap: 14px; flex-wrap: wrap; }
  .hero-actions .btn { padding: 14px 30px; font-size: 0.78rem; }

  /* ── Stats: 2x2 ── */
  .stats-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 28px 6vw;
    justify-items: center;
  }
  .stat { text-align: center; }
  .stat strong { font-size: 2rem; }
  .stat span { font-size: 0.65rem; letter-spacing: 1px; }
  .stat-divider { display: none; }

  /* ── Sections ── */
  .section { padding: 70px 6vw; }
  .section-head { margin-bottom: 40px; }
  .section-head h2 { font-size: 2rem; }
  .section-label { font-size: 0.7rem; letter-spacing: 3px; margin-bottom: 12px; }

  /* ── Services: 1 coluna ── */
  .services-grid { grid-template-columns: 1fr; gap: 14px; }
  .service-card { padding: 28px 24px; display: flex; flex-direction: row; align-items: center; gap: 20px; }
  .service-number { font-size: 1.6rem; color: var(--muted); margin-bottom: 0; min-width: 40px; }
  .service-card h3 { font-size: 1.1rem; margin-bottom: 4px; }
  .service-card p { font-size: 0.88rem; line-height: 1.5; }

  /* ── Machinery: 1 coluna ── */
  .machinery-grid { grid-template-columns: 1fr; gap: 20px; }
  .machinery-img { height: 220px; }
  .machinery-info { padding: 20px; }
  .machinery-info h3 { font-size: 1.2rem; margin-bottom: 8px; }
  .machinery-info p { font-size: 0.9rem; line-height: 1.6; }

  /* ── Gallery: 1 coluna ── */
  .gallery-row, .gallery-row.reverse { grid-template-columns: 1fr; gap: 20px; }
  .gallery-row.reverse .gallery-photo { order: 0; }
  .gallery-photo img { height: 240px; }
  .gallery-text { padding: 0; }
  .gallery-text h3 { font-size: 1.4rem; }
  .gallery-text p { font-size: 0.92rem; line-height: 1.6; }
  .gallery-tag { font-size: 0.65rem; padding: 4px 12px; margin-bottom: 10px; }

  /* ── Equip Marquee ── */
  .equip-marquee-item { width: 260px; margin: 0 10px; border-radius: 8px; }
  .equip-marquee-item img { height: 190px; }

  /* ── CTA Aluguel: 1 coluna ── */
  .cta-aluguel { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .cta-content h2 { font-size: 1.8rem; margin-bottom: 12px; }
  .cta-desc { font-size: 0.95rem; margin-bottom: 28px; max-width: 100%; margin-left: auto; margin-right: auto; }
  .cta-images { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; max-width: 400px; margin: 0 auto; }
  .cta-images img { aspect-ratio: 3/4; border-radius: 10px; }
  .cta-images img:first-child { margin-top: 0; }

  /* ── Contact: 1 coluna ── */
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .contact-desc { font-size: 1rem; margin-bottom: 28px; max-width: 100%; }
  .contact-details { gap: 24px; }
  .contact-item-label { font-size: 0.7rem; }
  .contact-item-value { font-size: 1rem; }
  .contact-form { grid-template-columns: 1fr; padding: 24px; gap: 18px; }
  .field label { font-size: 0.7rem; margin-bottom: 8px; }
  .field input, .field textarea { padding: 14px; font-size: 0.95rem; }
  .btn-form { justify-content: center; }

  /* ── Feedback: 1 coluna ── */
  .feedback-layout { grid-template-columns: 1fr; gap: 40px; }
  .feedback-desc { font-size: 1rem; max-width: 100%; margin-bottom: 20px; }
  .feedback-tips { gap: 14px; }
  .feedback-tip { font-size: 0.9rem; }
  .feedback-form { grid-template-columns: 1fr; padding: 24px; gap: 18px; }
  .star-rating .star { font-size: 2rem; }

  /* ── About: 1 coluna ── */
  .about-layout { grid-template-columns: 1fr; gap: 40px; }
  .about-left { text-align: center; }
  .about-left h2 { font-size: 1.8rem; margin-bottom: 16px; }
  .about-desc { font-size: 0.95rem; line-height: 1.7; }
  .about-mascote { width: 280px; margin: 32px auto 0; }
  .about-right { gap: 16px; }
  .about-card { padding: 24px; }
  .about-card h3 { font-size: 1.15rem; margin-bottom: 8px; }
  .about-card p { font-size: 0.9rem; line-height: 1.6; }

  /* ── Friends: 1 coluna ── */
  .friends-slide { grid-template-columns: 1fr; min-height: auto; }
  .friends-slide-img { min-height: 240px; }
  .friends-slide-info { padding: 32px 24px; text-align: center; align-items: center; }
  .friends-slide-info h3 { font-size: 1.6rem; }
  .friends-slide-info p { font-size: 0.95rem; line-height: 1.6; }
  .friends-slide-info .friends-label { font-size: 0.7rem; margin-bottom: 4px; }
  .friends-dots { margin-top: 28px; gap: 10px; }
  .friends-dot { width: 10px; height: 10px; }
  .friends-dot.active { width: 30px; }

  /* ── Testimonials: 1 coluna ── */
  .testimonials-grid { grid-template-columns: 1fr; gap: 14px; padding: 0; }
  .testimonial-card { padding: 24px; border-radius: 8px; }
  .testimonial-stars { font-size: 1rem; margin-bottom: 12px; }
  .testimonial-text { font-size: 0.92rem; margin-bottom: 16px; line-height: 1.6; }
  .testimonial-avatar { width: 40px; height: 40px; font-size: 0.85rem; }
  .testimonial-name { font-size: 0.9rem; }

  /* ── Footer: 1 coluna ── */
  .footer-top { grid-template-columns: 1fr; gap: 32px; padding: 48px 6vw; text-align: center; }
  .footer-logo-svg { height: 28px; margin-bottom: 16px; }
  .footer-tagline { font-size: 0.88rem; max-width: 100%; }
  .footer-col { text-align: center; }
  .footer-col h4 { font-size: 0.8rem; margin-bottom: 14px; }
  .footer-col a { font-size: 0.88rem; margin-bottom: 12px; justify-content: center; gap: 10px; }
  .footer-bottom { padding: 20px 6vw; font-size: 0.75rem; }

  /* ── WhatsApp ── */
  .wa-float { bottom: 20px; right: 20px; width: 52px; height: 52px; }
  .wa-icon { width: 26px; height: 26px; }

  /* ── Arcade icons ── */
  .arcade-icon { width: 36px; height: 36px; }
  .arcade-icons-track { gap: 28px; }

  /* ── Section dividers ── */
  .section-divider svg { height: 36px; }

  /* ── Scroll progress ── */
  .scroll-progress { height: 2px; }

  /* ── Products showcase: 1 coluna ── */
  .products-showcase { grid-template-columns: 1fr; gap: 20px; }
  .product-showcase-body { padding: 20px; }
  .product-showcase-prices { gap: 8px; padding: 12px; }
}

/* ═══════ Small mobile (até 480px) ═══════ */
@media (max-width: 480px) {

  /* ── Hero ── */
  .hero { padding: 90px 5vw 40px; }
  .hero-mascote { width: 160px; }
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.7rem; }
  .lead { font-size: 0.9rem; margin-bottom: 24px; }
  .badge { font-size: 0.58rem; letter-spacing: 2px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; max-width: 260px; padding: 14px 24px; font-size: 0.78rem; }

  /* ── Stats: 2x2 ── */
  .stats-inner { padding: 20px 5vw; gap: 16px; }
  .stat strong { font-size: 1.6rem; }
  .stat span { font-size: 0.58rem; }

  /* ── Sections ── */
  .section { padding: 56px 5vw; }
  .section-head { margin-bottom: 32px; }
  .section-head h2 { font-size: 1.7rem; }

  /* ── Services ── */
  .service-card { padding: 22px 18px; gap: 16px; }
  .service-number { font-size: 1.4rem; min-width: 36px; }
  .service-card h3 { font-size: 1rem; }
  .service-card p { font-size: 0.82rem; }

  /* ── Machinery ── */
  .machinery-img { height: 190px; }
  .machinery-info { padding: 16px; }
  .machinery-info h3 { font-size: 1.05rem; }
  .machinery-info p { font-size: 0.82rem; }

  /* ── Gallery ── */
  .gallery-photo img { height: 200px; }
  .gallery-text h3 { font-size: 1.2rem; }
  .gallery-text p { font-size: 0.85rem; }

  /* ── Equip Marquee ── */
  .equip-marquee-item { width: 220px; margin: 0 8px; }
  .equip-marquee-item img { height: 160px; }

  /* ── CTA ── */
  .cta-content h2 { font-size: 1.5rem; }
  .cta-desc { font-size: 0.88rem; }
  .cta-images { max-width: 320px; gap: 10px; }

  /* ── Contact ── */
  .contact-form { padding: 20px; gap: 14px; }
  .field input, .field textarea { padding: 12px; font-size: 0.88rem; }

  /* ── Feedback ── */
  .feedback-form { padding: 20px; gap: 14px; }
  .star-rating .star { font-size: 1.8rem; }

  /* ── About ── */
  .about-left h2 { font-size: 1.5rem; }
  .about-desc { font-size: 0.88rem; }
  .about-mascote { width: 220px; margin: 24px auto 0; }
  .about-card { padding: 20px; }
  .about-card h3 { font-size: 1rem; }
  .about-card p { font-size: 0.82rem; }

  /* ── Friends ── */
  .friends-slide-img { min-height: 200px; }
  .friends-slide-info { padding: 24px 20px; }
  .friends-slide-info h3 { font-size: 1.35rem; }
  .friends-slide-info p { font-size: 0.88rem; }

  /* ── Testimonials ── */
  .testimonial-card { padding: 20px; }
  .testimonial-text { font-size: 0.85rem; }
  .testimonial-avatar { width: 36px; height: 36px; }
  .testimonial-name { font-size: 0.82rem; }

  /* ── Footer ── */
  .footer-top { gap: 28px; padding: 36px 5vw; }
  .footer-tagline { font-size: 0.82rem; }
  .footer-col a { font-size: 0.82rem; }
  .footer-bottom { padding: 16px 5vw; font-size: 0.7rem; }

  /* ── Rental ── */
  .rental-hero h1 { font-size: 1.6rem; }
  .rental-card-body { padding: 16px; }
  .rental-prices { grid-template-columns: 1fr; gap: 8px; padding: 14px; }
  .rental-price-value { font-size: 0.92rem; }
  .rental-card-actions { flex-direction: column; }
  .rental-card-actions .btn { width: 100%; }
  .rental-info-inner { grid-template-columns: 1fr; gap: 20px; }

  /* ── Products showcase ── */
  .product-showcase-prices { grid-template-columns: 1fr; }
  .product-showcase-actions { flex-direction: column; }
  .product-showcase-actions .btn { width: 100%; }
}

/* ─────────────── Large screens (1440p / QHD) ─────────────── */
@media (min-width: 1440px) {
  :root { --max: 1500px; }
  .hero { gap: 80px; }
  .hero-mascote { width: 440px; }
  .hero-content { max-width: 700px; }
  .stat strong { font-size: 3.5rem; }
  .services-grid { gap: 32px; }
  .gallery-photo img { height: 480px; }
  .equip-marquee-item { width: 440px; margin: 0 18px; }
  .equip-marquee-item img { height: 320px; }
  .friends-slide { min-height: 560px; }
  .friends-slide-img { min-height: 560px; }
  .friends-slide-info { padding: 60px 100px; }
  .friends-slide-info h3 { font-size: 3rem; }
  .footer-top { padding: 100px 5vw; }
  .feedback-form { padding: 60px; }
}

/* ─────────────── Ultra wide / 4K (2560+) ─────────────── */
@media (min-width: 2000px) {
  :root { --max: 1800px; }
  .hero { gap: 100px; padding: 140px 6vw 100px; }
  .hero-mascote { width: 520px; }
  .hero-content { max-width: 800px; }
  h1 { font-size: 5.5rem; }
  h2 { font-size: 4rem; }
  .lead { font-size: 1.25rem; }
  .badge { font-size: 0.85rem; letter-spacing: 4px; }
  .btn { padding: 18px 36px; font-size: 0.9rem; }
  .stat strong { font-size: 4rem; }
  .stat span { font-size: 0.85rem; }
  .section { padding: 140px 6vw; }
  .section-head { margin-bottom: 80px; }
  .service-card { padding: 56px 40px; }
  .service-card h3 { font-size: 1.4rem; }
  .services-grid { gap: 40px; }
  .gallery-photo img { height: 560px; }
  .gallery-text p { font-size: 1.05rem; }
  .equip-marquee-item { width: 520px; margin: 0 24px; }
  .equip-marquee-item img { height: 400px; }
  .equip-marquee-item:hover { transform: scale(1.06); }
  .cta-content h2 { font-size: 3.5rem; }
  .cta-images { gap: 24px; }
  .cta-images img { border-radius: 20px; }
  .contact-form { padding: 60px; }
  .friends-slide { min-height: 640px; }
  .friends-slide-img { min-height: 640px; }
  .friends-slide-info { padding: 80px 120px; }
  .friends-slide-info h3 { font-size: 3.5rem; }
  .friends-slide-info p { font-size: 1.25rem; }
  .testimonial-card { padding: 40px; }
  .testimonial-text { font-size: 1.05rem; }
  .footer-top { padding: 120px 6vw; gap: 80px; }
  .footer-tagline { max-width: 400px; font-size: 1rem; }
  .rental-grid { gap: 40px; }
  .feedback-layout { gap: 100px; }
  .feedback-form { padding: 80px; }
  .feedback-tips { gap: 20px; }
  .feedback-tip { font-size: 1.05rem; }
  .star-rating .star { font-size: 2.4rem; }
  .about-mascote { width: 620px; }
}

/* ═══════════════════════════════════════════
   ANIMAÇÕES - Quem Somos
   ═══════════════════════════════════════════ */

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

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-50px); }
  to   { opacity: 1; transform: translateX(0); }
}

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

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.9); }
  to   { opacity: 1; transform: scale(1); }
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(59,130,246,0.3); }
  50%      { box-shadow: 0 0 20px 4px rgba(59,130,246,0.15); }
}

.anim-fade-up {
  opacity: 0;
  animation: fadeInUp 0.8s var(--ease-out) forwards;
}

.anim-fade-in {
  opacity: 0;
  animation: fadeIn 0.8s var(--ease-out) forwards;
}

.anim-slide-left {
  opacity: 0;
  animation: slideInLeft 0.8s var(--ease-out) forwards;
}

.anim-slide-right {
  opacity: 0;
  animation: slideInRight 0.8s var(--ease-out) forwards;
}

.anim-scale {
  opacity: 0;
  animation: scaleIn 0.8s var(--ease-out) forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }
.delay-6 { animation-delay: 0.6s; }

/* Scroll-reveal (fallback: always visible) */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}
.stagger.visible > *:nth-child(1) { transition-delay: 0.05s; }
.stagger.visible > *:nth-child(2) { transition-delay: 0.15s; }
.stagger.visible > *:nth-child(3) { transition-delay: 0.25s; }
.stagger.visible > *:nth-child(4) { transition-delay: 0.35s; }
.stagger.visible > * {
  opacity: 0;
  transform: translateY(20px);
}
.stagger.visible > * {
  opacity: 1;
  transform: translateY(0);
}
