@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600&family=Syncopate:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;700&display=swap');

/* 1. RESET & SETUP */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #030303;
  --bg-noise: url('data:image/svg+xml;utf8,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.65" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)"/%3E%3C/svg%3E');
  --surface: #0a0a0a;
  --surface-hover: #121212;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.2);
  --text: #f0f0f0;
  --text-muted: #888888;
  --accent: #FF1E1E;
  --accent-glow: rgba(255, 30, 30, 0.3);
  --whatsapp: #25D366;
  
  --font-display: 'Syncopate', sans-serif;
  --font-heading: 'Oswald', sans-serif;
  --font-body: 'Outfit', sans-serif;
  
  --container: 1400px;
  --section-pad: 8rem 0;
  --transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg);
  color: var(--text);
}

body {
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

::selection {
  background: var(--accent);
  color: #fff;
}

/* SCROLLBAR SUTIL */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--bg);
}
::-webkit-scrollbar-thumb {
  background: var(--border-strong);
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--text-muted);
}

/* NOISE OVERLAY */
.noise-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  background-image: var(--bg-noise);
  opacity: 0.03;
  mix-blend-mode: overlay;
}

/* GRID BACKGROUND */
.grid-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: 
    linear-gradient(to right, var(--border) 1px, transparent 1px),
    linear-gradient(to bottom, var(--border) 1px, transparent 1px);
  background-size: 100px 100px;
  opacity: 0.3;
  mask-image: radial-gradient(circle at center, black, transparent 80%);
  -webkit-mask-image: radial-gradient(circle at center, black, transparent 80%);
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  text-transform: uppercase;
  line-height: 1.1;
  font-weight: 700;
}

.text-stroke {
  color: transparent;
  -webkit-text-stroke: 1px var(--text);
}

.text-stroke.accent {
  -webkit-text-stroke: 1px var(--accent);
}

/* UTILS */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

img {
  max-width: 100%;
  display: block;
  -webkit-user-drag: none;
  user-drag: none;
  -webkit-touch-callout: none;
  pointer-events: none;
}

a img, button img { pointer-events: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.section { padding: var(--section-pad); }

.section-header {
  margin-bottom: 4rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.section-title {
  font-size: clamp(3rem, 8vw, 6rem);
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 500px;
  font-weight: 300;
}

.text-center { text-align: center; }

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.25rem 2.5rem;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-strong);
  border-radius: 0;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--accent);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: var(--transition);
  z-index: -1;
}

.btn:hover {
  border-color: var(--accent);
  color: #fff;
}

.btn:hover::before {
  transform: scaleY(1);
}

.btn-primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.btn-primary::before {
  background: #000;
}

.btn-whatsapp {
  background: var(--whatsapp);
  border-color: var(--whatsapp);
  color: #fff;
}
.btn-whatsapp::before {
  background: #128C7E;
}

/* HEADER */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 90px;
  z-index: 1000;
  border-bottom: 1px solid transparent;
  background: transparent;
  transition: background var(--transition), border var(--transition), backdrop-filter var(--transition);
}

#header.scrolled {
  background: rgba(3, 3, 3, 0.95);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.logo-main {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.15em;
}
.logo-rs { color: var(--accent); }

.logo-sub {
  display: block;
  font-size: 0.6rem;
  color: var(--text-muted);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 2px;
}

.header-nav {
  display: flex;
  gap: 3rem;
}

.header-nav a {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}

.header-nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%;
  height: 1px;
  background: var(--accent);
  transform: translateX(-100%);
  transition: var(--transition);
}

.header-nav a:hover::after {
  transform: translateX(0);
}

/* MENU TOGGLE */
.menu-toggle {
  display: none;
  width: 30px;
  height: 20px;
  position: relative;
  z-index: 1002;
  cursor: pointer;
}
.menu-toggle span {
  position: absolute;
  height: 2px;
  width: 100%;
  background: var(--text);
  transition: var(--transition);
}
.menu-toggle span:nth-child(1) { top: 0; }
.menu-toggle span:nth-child(2) { top: 9px; }
.menu-toggle span:nth-child(3) { top: 18px; }

.menu-toggle.open span:nth-child(1) { top: 9px; transform: rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { top: 9px; transform: rotate(-45deg); }

/* MOBILE DRAWER */
.nav-drawer {
  position: fixed;
  top: 0; right: -100%;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background: var(--bg);
  border-left: 1px solid var(--border);
  z-index: 1001;
  padding: 8rem 3rem 3rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  transition: right 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav-drawer.open { right: 0; }
.nav-drawer a {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  text-transform: uppercase;
}
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(5px);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s;
}
.nav-overlay.open { opacity: 1; pointer-events: auto; }

/* DRAWER CLOSE BUTTON */
.drawer-close {
  position: absolute;
  top: 1.75rem;
  right: 1.75rem;
  width: 44px;
  height: 44px;
  background: var(--surface-hover);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text);
  transition: var(--transition);
  z-index: 1003;
}
.drawer-close:hover {
  background: var(--accent);
  border-color: var(--accent);
}

/* HERO */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 90px;
  background-image: linear-gradient(to bottom, rgba(3, 3, 3, 0.45) 0%, rgba(3, 3, 3, 0.82) 65%, rgba(3, 3, 3, 0.98) 100%), url('images/banner/banner-hero-desktop.webp');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

.hero-glow {
  position: absolute;
  top: -30%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(230,0,0,0.07), transparent 70%);
  pointer-events: none;
}


.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-left {
  max-width: 55%;
}

.hero-title {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  font-size: clamp(2.8rem, 6vw, 7rem);
  line-height: 1;
  margin-bottom: 2rem;
  max-width: 60%;
}

.hero-title .line {
  display: block;
}

.hero-title .line-2 {
  padding-left: 6%;
  color: var(--accent);
}

.hero-title .line-3 {
  padding-left: 12%;
  color: var(--text);
  white-space: nowrap;
}

.hero-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 8rem;
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  gap: 2rem;
}

.hero-subtitle {
  font-size: 1rem;
  max-width: 380px;
  color: var(--text-muted);
}

.hero-chips {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.hero-chip {
  font-family: var(--font-display);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  padding: 0.75rem 1.5rem;
  border: 1px solid var(--border);
  border-radius: 100px;
  text-transform: uppercase;
}

/* MARCAS (BRANDS) — CSS Marquee */
.brands {
  padding: 4rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  overflow: hidden;
}

.brands-marquee {
  overflow: hidden;
  width: 100%;
}

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

.brands-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: marquee 28s linear infinite;
}

.brands-track:hover {
  animation-play-state: paused;
}

.brands__slide {
  flex: 0 0 auto;
  padding: 0 3rem;
}

.brands__slide img {
  height: 75px;
  width: auto;
  object-fit: contain;
  transition: transform var(--transition);
}

.brands__slide:hover img {
  transform: scale(1.08);
}

/* SERVIÇOS GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px;
  height: 0;
  background: var(--accent);
  transition: height 0.4s ease;
}

.service-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-4px);
}

.service-card:hover::before {
  height: 100%;
}



.service-num {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.2;
  line-height: 1;
  margin-bottom: 1.5rem;
  transition: var(--transition);
}

.service-card:hover .service-num {
  opacity: 0.5;
}

.service-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}



.service-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-tags li {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  padding: 0.4rem 1rem;
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--text-muted);
  text-transform: uppercase;
  transition: var(--transition);
}

.service-card:nth-child(1) .service-tags li,
.service-card:nth-child(2) .service-tags li {
  color: var(--accent);
  border-color: rgba(255, 30, 30, 0.3);
  background: rgba(255, 30, 30, 0.05);
  font-weight: 500;
}

/* ESTRUTURA */
.estrutura-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
}

.est-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border);
}

.est-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border);
  position: relative;
  transition: var(--transition);
}

.est-item::before {
  content: '';
  position: absolute;
  bottom: -1px; left: 0;
  width: 0%;
  height: 1px;
  background: var(--accent);
  transition: var(--transition);
}

.est-item:hover::before { width: 100%; }

.est-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--text-muted);
}
.est-item:hover .est-num { color: var(--accent); }

.est-content h3 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.est-photos {
  position: relative;
}

.photo-stack {
  position: sticky;
  top: 120px;
  height: 600px;
}

.image-placeholder {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  transition: var(--transition);
}

.photo-stack .image-placeholder {
  position: absolute;
}

.img-1 {
  top: 0; left: 0; right: 20%; bottom: 30%;
  z-index: 1;
}
.img-2 {
  top: 20%; left: 30%; right: 0; bottom: 10%;
  z-index: 2;
  border-color: var(--accent);
  background: #0a0202;
}
.img-3 {
  top: 60%; left: 10%; right: 40%; bottom: 0;
  z-index: 3;
}

.image-placeholder:hover {
  z-index: 10;
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.placeholder-label {
  font-family: var(--font-display);
  color: var(--accent);
  letter-spacing: 0.2em;
  font-size: 0.8rem;
  margin-bottom: 1rem;
}
.placeholder-description {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* PROCESSO SCROLL LOCK */
.processo-section {
  background: #000;
  border-top: 1px solid var(--border);
  height: 300vh; /* Permite rolar a tela enquanto anima a timeline */
}

.processo-pin-wrapper {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.processo-timeline {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-top: 2rem;
  width: 100%;
}

.timeline-track {
  position: absolute;
  top: 40px; left: 0; right: 0;
  height: 2px;
  background: var(--border);
  z-index: 0;
}

.timeline-progress {
  position: absolute;
  top: 40px; left: 0;
  width: 0%;
  height: 2px;
  background: var(--accent);
  z-index: 1;
  transition: width 0.1s linear; /* Atualizado via JS */
}

.process-step {
  position: relative;
  z-index: 2;
  width: 22%;
  opacity: 0.3;
  transition: opacity 0.3s ease;
}

.process-step.active {
  opacity: 1;
}

.step-num {
  width: 80px; height: 80px;
  background: var(--bg);
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 2rem;
  transition: var(--transition);
}

.process-step.active .step-num {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  box-shadow: 0 0 20px rgba(255, 30, 30, 0.4);
}

.process-step h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.process-step p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* DEPOIMENTOS (EMBLA) */
.reviews__viewport {
  overflow: hidden;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  padding: 1rem 0;
}

.reviews__container {
  display: flex;
  touch-action: pan-y pinch-zoom;
}

.reviews__slide {
  flex: 0 0 auto;
  min-width: 0;
  padding: 0 1rem;
}

.review-card {
  width: 450px;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  height: 100%;
}

.review-stars {
  color: var(--accent);
  font-size: 1.2rem;
  letter-spacing: 0.1em;
}

.review-text {
  font-size: 1.1rem;
  line-height: 1.6;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

/* REPUTATION HEADER + GOOGLE BADGE */
.reputation-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}

.google-rating-badge {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  padding: 1rem 1.5rem;
  border-radius: 4px;
}

.google-rating-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.google-wordmark {
  font-family: 'Arial', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.google-score {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}

.google-stars-row {
  display: flex;
  gap: 2px;
  font-size: 1.4rem;
  color: #FBBC04;
}

.google-stars-row .half-star {
  opacity: 0.9;
}

.btn-avaliar {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1.5rem;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 4px;
  text-decoration: none;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-avaliar:hover {
  background: #cc0000;
  color: #fff;
  transform: translateY(-2px);
}

/* DEPOIMENTOS */
.avatar {
  width: 50px; height: 50px;
  background: var(--border-strong);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.avatar-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

/* SOBRE NÓS */
.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

/* FOOTER */
.footer {
  border-top: 1px solid var(--border);
  padding-top: 6rem;
  background: #000;
}

.footer-logo {
  height: 45px;
  width: auto;
  object-fit: contain;
  margin-bottom: 0.5rem;
}

.footer-tagline {
  color: var(--text-muted);
  margin-top: 1rem;
  max-width: 300px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 6rem;
}

.footer-col h4 {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: var(--text-muted);
}

.footer-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-list a {
  color: var(--text);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-list a:hover {
  color: var(--accent);
  padding-left: 0.5rem;
}

.footer-bottom {
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-family: var(--font-display);
  text-transform: uppercase;
}

/* WHATSAPP FLOAT */
.wa-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 65px;
  height: 65px;
  background-color: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  box-shadow: 0 4px 15px rgba(255, 30, 30, 0.4);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s, visibility 0.3s;
  opacity: 1;
  visibility: visible;
}

.wa-float:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 8px 25px rgba(255, 30, 30, 0.6);
}

/* ANIMATIONS */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .estrutura-wrapper, .sobre-grid {
    grid-template-columns: 1fr;
  }
  .photo-stack {
    position: relative;
    top: 0;
    height: 500px;
    margin-top: 4rem;
  }
  .processo-section {
    height: auto;
  }
  .processo-pin-wrapper {
    position: relative;
    height: auto;
    padding: 6rem 0;
  }
  .process-step { opacity: 1; }
  .process-step .step-num {
    background: var(--accent); border-color: var(--accent); color: #fff;
  }
}

@media (max-width: 768px) {
  :root { --section-pad: 5rem 0; }

  .container { padding: 0 1.25rem; }

  /* Hero banner mobile */
  #hero {
    background-image: linear-gradient(to bottom, rgba(3,3,3,0.5) 0%, rgba(3,3,3,0.85) 65%, rgba(3,3,3,0.98) 100%), url('images/banner/banner-hero-mobile.webp');
    background-position: center center;
    min-height: 100svh;
  }

  /* Header */
  .header-nav { display: none; }
  .menu-toggle { display: block; }
  .d-none-mobile { display: none; }

  /* Hero */
  .hero-left { max-width: 100%; }
  .hero-content { text-align: center; }
  .hero-title {
    font-size: clamp(2.6rem, 11vw, 3.8rem);
    max-width: 100%;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
    align-items: center;
  }
  .hero-title .line-2 { padding-left: 0; }
  .hero-title .line-3 { padding-left: 0; white-space: normal; }
  .hero-meta {
    flex-direction: column;
    align-items: center;
    margin-top: 3rem;
    gap: 1.5rem;
  }
  .hero-chips { justify-content: center; }
  .hero-subtitle { max-width: 100%; text-align: center; }

  /* Brands */
  .brands { padding: 2.5rem 0; }
  .brands__slide { padding: 0 1.5rem; }
  .brands__slide img { height: 48px; }

  /* Section titles & subtitles */
  .section-title { font-size: clamp(2rem, 9vw, 3.5rem); }
  .section-header { margin-bottom: 2.5rem; }
  .section-subtitle { max-width: 100%; font-size: 1rem; }
  .section { padding: 5rem 0; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; gap: 1rem; }
  .service-card { padding: 2rem 1.5rem; }

  /* Sobre */
  .sobre-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }
  .sobre-text { text-align: center; }
  .sobre-text p { text-align: left; }

  /* Estrutura */
  .estrutura-wrapper { gap: 3rem; }
  .est-content h3 { font-size: 1.4rem; }
  .photo-stack { height: 360px; margin-top: 0; }

  /* Processo */
  .processo-timeline { flex-direction: column; gap: 3rem; margin-top: 3rem; }
  .timeline-track, .timeline-progress { display: none; }
  .process-step { width: 100%; display: flex; gap: 1.5rem; align-items: flex-start; opacity: 1; }
  .step-num { width: 60px; height: 60px; font-size: 1.2rem; margin-bottom: 0; flex-shrink: 0; }
  .processo-pin-wrapper { padding: 5rem 0; }

  /* Reviews */
  .review-card { width: calc(100vw - 4rem); max-width: 400px; padding: 2rem; }
  .reputation-header { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
  #depoimentos { padding: 5rem 0 6rem 0 !important; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-col { text-align: center; }
  .footer-col p { text-align: center; }
  .footer-list { align-items: center; }
  .footer-list a { text-align: center; }
  .footer-brand { display: flex; flex-direction: column; align-items: center; }
  .footer-tagline { max-width: 100%; text-align: center; }
  .footer-bottom { flex-direction: column; gap: 0.75rem; text-align: center; align-items: center; }
  .footer { padding-top: 4rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 1rem; }

  .hero-title { font-size: clamp(2.2rem, 10vw, 3rem); }
  .hero-chip { font-size: 0.55rem; padding: 0.6rem 1rem; }

  .brands__slide { padding: 0 1.25rem; }
  .brands__slide img { height: 38px; }

  .service-card { padding: 1.75rem 1.25rem; }

  .review-card { width: calc(100vw - 2.5rem); padding: 1.5rem; }
  .review-text { font-size: 1rem; }

  .step-num { width: 50px; height: 50px; font-size: 1rem; }

  .google-rating-badge { flex-wrap: wrap; gap: 1rem; }
  .google-wordmark { font-size: 1.2rem; }
  .google-score { font-size: 1.6rem; }

  .footer-bottom { font-size: 0.7rem; }
  .nav-drawer { padding: 7rem 2rem 3rem; }
  .nav-drawer a { font-size: 2rem; }
}
