/* =====================================================
   CERNEV MORLANS — style.css
   Stack: HTML + CSS + Vanilla JS
   ===================================================== */

/* ---------- Variáveis ---------- */
:root {
  --red-primary: #cc0000;
  --red-dark: #990000;
  --red-light: #ff1a1a;
  --blue-primary: #003087;
  --blue-light: #0052cc;
  --dark-bg: #0d0d0d;
  --dark-section: #111827;
  --dark-card: #1c2233;
  --gray-bg: #f5f6f8;
  --gray-border: #e5e7eb;
  --text-light: #ffffff;
  --text-muted: #9ca3af;
  --text-dark: #111827;
  --text-body: #374151;
  --whatsapp: #25d366;
  --whatsapp-dark: #128c7e;
  --nav-height: 72px;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.18);
  --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.3);
  --transition: 0.3s ease;
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--dark-bg);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* ---------- Tipografia ---------- */
.font-heading {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
}

h1,
h2,
h3 {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.15;
}

/* ---------- Utilitários ---------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 90px 0;
}

.section--dark {
  background: var(--dark-section);
  color: var(--text-light);
}

.section--light {
  background: var(--gray-bg);
  color: var(--text-dark);
}

.section__badge {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red-primary);
  margin-bottom: 12px;
}

.section__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  margin-bottom: 16px;
  line-height: 1.1;
}

.section__subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 580px;
  line-height: 1.7;
}

.section__subtitle--light {
  color: var(--text-muted);
}

.section__subtitle--dark {
  color: var(--text-body);
}

.divider {
  width: 60px;
  height: 4px;
  background: var(--red-primary);
  border-radius: 2px;
  margin: 20px 0 28px;
}

/* ---------- Botões ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 6px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
}

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

.btn--primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(204, 0, 0, 0.4);
}

.btn--outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.6);
}

.btn--outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
  transform: translateY(-2px);
}

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

.btn--whatsapp:hover {
  background: var(--whatsapp-dark);
  border-color: var(--whatsapp-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
}

.btn--lg {
  padding: 18px 36px;
  font-size: 1rem;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition:
    background var(--transition),
    box-shadow var(--transition);
}

.navbar.scrolled {
  background: rgba(13, 13, 13, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.5);
}

.navbar__inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* Logo */
.navbar__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.logo-emblem {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #0d0d0d;
  border: 2px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

.logo-emblem svg {
  width: 44px;
  height: 44px;
}

.navbar__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.navbar__logo-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.1rem;
  color: #fff;
  letter-spacing: 1px;
}

.navbar__logo-tagline {
  font-size: 0.65rem;
  color: var(--text-muted);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* Nav links */
.navbar__links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.navbar__links a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  transition: color var(--transition);
  position: relative;
}

.navbar__links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--red-primary);
  transition: width var(--transition);
}

.navbar__links a:hover,
.navbar__links a.active {
  color: #fff;
}

.navbar__links a:hover::after,
.navbar__links a.active::after {
  width: 100%;
}

/* Nav actions */
.navbar__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.navbar__wa {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--whatsapp);
  color: #fff;
  padding: 9px 18px;
  border-radius: 6px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.3px;
  transition: all var(--transition);
}

.navbar__wa:hover {
  background: var(--whatsapp-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
}

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

.navbar__hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all var(--transition);
}

.navbar__hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.navbar__hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.navbar__hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu */
.navbar__mobile {
  /* Sempre display:flex — esconde via visibility+opacity para poder animar */
  display: flex;
  flex-direction: column;
  gap: 0;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(10, 10, 10, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 24px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
  /* Estado fechado */
  visibility: hidden;
  opacity: 0;
  transform: translateY(-12px);
  pointer-events: none;
  transition:
    opacity 0.28s ease,
    transform 0.28s ease,
    visibility 0.28s ease;
}

.navbar__mobile.open {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.navbar__mobile a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  transition: color var(--transition);
}

.navbar__mobile a:hover {
  color: #fff;
}

.navbar__mobile .btn--whatsapp {
  margin-top: 16px;
  justify-content: center;
  width: 100%;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero__slide.active {
  opacity: 1;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.78) 0%,
    rgba(0, 30, 87, 0.5) 60%,
    rgba(180, 0, 0, 0.15) 100%
  );
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  padding-top: var(--nav-height);
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(204, 0, 0, 0.2);
  border: 1px solid rgba(204, 0, 0, 0.5);
  color: #ff6b6b;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 50px;
  margin-bottom: 28px;
}

.hero__badge::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--red-primary);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.7);
  }
}

.hero__title {
  font-size: clamp(2.4rem, 6vw, 5rem);
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: -1px;
  line-height: 1.05;
  margin-bottom: 20px;
  max-width: 720px;
}

.hero__title span {
  color: var(--red-primary);
}

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.8);
  max-width: 560px;
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Slide indicators */
.hero__indicators {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 8px;
}

.hero__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: all var(--transition);
  border: none;
}

.hero__dot.active {
  background: var(--red-primary);
  width: 28px;
  border-radius: 4px;
}

/* Scroll arrow */
.hero__scroll {
  position: absolute;
  bottom: 36px;
  right: 40px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.5);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: float-arrow 2.5s ease-in-out infinite;
}

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

/* ============================================================
   SOBRE NÓS
   ============================================================ */
.sobre {
  background: var(--gray-bg);
}

.sobre__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.sobre__text {
}

.sobre__text p {
  font-size: 1.05rem;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 16px;
}

.sobre__stats {
  display: flex;
  gap: 40px;
  margin-top: 36px;
  padding-top: 36px;
  border-top: 2px solid var(--gray-border);
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat__number {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 2.8rem;
  color: var(--red-primary);
  line-height: 1;
}

.stat__label {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 4px;
  font-weight: 600;
}

.sobre__image-wrap {
  position: relative;
}

.sobre__image-wrap::before {
  content: '';
  position: absolute;
  top: -16px;
  right: -16px;
  width: 100%;
  height: 100%;
  border: 3px solid var(--red-primary);
  border-radius: var(--radius);
  z-index: 0;
}

.sobre__img {
  position: relative;
  z-index: 1;
  border-radius: var(--radius);
  width: 100%;
  height: 460px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

.sobre__vintage-tag {
  position: absolute;
  bottom: 24px;
  left: -20px;
  z-index: 2;
  background: #fff;
  padding: 12px 20px;
  border-radius: 8px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 12px;
}

.sobre__vintage-tag i {
  font-size: 1.8rem;
  color: var(--red-primary);
}

.sobre__vintage-tag strong {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--text-dark);
  display: block;
}

.sobre__vintage-tag span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ============================================================
   SERVIÇOS
   ============================================================ */
.servicos {
  background: var(--dark-section);
}

.servicos__header {
  text-align: center;
  margin-bottom: 60px;
}

.servicos__header .section__subtitle {
  margin: 0 auto;
}

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

.servico-card {
  background: var(--dark-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.servico-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--red-primary), var(--blue-primary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.servico-card:hover {
  border-color: rgba(204, 0, 0, 0.3);
  transform: translateY(-6px);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(204, 0, 0, 0.15);
}

.servico-card:hover::before {
  transform: scaleX(1);
}

.servico-card__icon {
  width: 56px;
  height: 56px;
  background: rgba(204, 0, 0, 0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: background var(--transition);
}

.servico-card:hover .servico-card__icon {
  background: rgba(204, 0, 0, 0.22);
}

.servico-card__icon i {
  font-size: 1.5rem;
  color: var(--red-primary);
}

.servico-card__title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: #fff;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.servico-card__desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================================================
   DIFERENCIAIS
   ============================================================ */
.diferenciais {
  position: relative;
  padding: 100px 0;
  background: var(--dark-bg);
  overflow: hidden;
}

.diferenciais__bg {
  position: absolute;
  inset: 0;
  background-image: url('../img/bg-slider-1.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  filter: brightness(0.18) saturate(0.7);
}

.diferenciais__content {
  position: relative;
  z-index: 1;
}

.diferenciais__header {
  text-align: center;
  margin-bottom: 64px;
}

.diferenciais__header .section__subtitle {
  margin: 0 auto;
}

.diferenciais__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.diferencial {
  text-align: center;
  padding: 40px 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  transition: all var(--transition);
}

.diferencial:hover {
  background: rgba(204, 0, 0, 0.08);
  border-color: rgba(204, 0, 0, 0.3);
  transform: translateY(-4px);
}

.diferencial__icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(204, 0, 0, 0.15);
  border: 2px solid rgba(204, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  transition: all var(--transition);
}

.diferencial:hover .diferencial__icon {
  background: rgba(204, 0, 0, 0.25);
  border-color: var(--red-primary);
}

.diferencial__icon i {
  font-size: 1.8rem;
  color: var(--red-primary);
}

.diferencial__title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  color: #fff;
  margin-bottom: 12px;
}

.diferencial__desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================================================
   GALERIA
   ============================================================ */
.galeria {
  background: var(--dark-bg);
  padding: 90px 0;
}

.galeria__header {
  text-align: center;
  margin-bottom: 52px;
}

.galeria__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 12px;
}

.galeria__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
}

.galeria__item--large {
  grid-row: span 2;
}

.galeria__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 220px;
  transition: transform 0.5s ease;
}

.galeria__item:hover img {
  transform: scale(1.05);
}

.galeria__item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(204, 0, 0, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}

.galeria__item:hover .galeria__item__overlay {
  background: rgba(204, 0, 0, 0.3);
}

.galeria__item__overlay i {
  color: #fff;
  font-size: 2rem;
  opacity: 0;
  transform: scale(0.5);
  transition: all var(--transition);
}

.galeria__item:hover .galeria__item__overlay i {
  opacity: 1;
  transform: scale(1);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.lightbox.open {
  opacity: 1;
  pointer-events: all;
}

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6);
}

.lightbox__close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity var(--transition);
  line-height: 1;
}

.lightbox__close:hover {
  opacity: 1;
}

/* ============================================================
   LOCALIZAÇÃO
   ============================================================ */
.localizacao {
  background: var(--gray-bg);
  padding: 90px 0;
}

.localizacao__header {
  text-align: center;
  margin-bottom: 52px;
}

.localizacao__address-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--gray-border);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  color: var(--text-body);
  font-weight: 600;
  margin-top: 20px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.localizacao__address-tag i {
  color: var(--red-primary);
}

.localizacao__wrap {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.localizacao__map {
  width: 100%;
  height: 460px;
  border: 0;
  display: block;
}

.localizacao__cta {
  background: #fff;
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.localizacao__info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.localizacao__info strong {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--text-dark);
}

.localizacao__info span {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ============================================================
   CONTATO
   ============================================================ */
.contato {
  background: var(--dark-section);
  padding: 90px 0;
}

.contato__header {
  text-align: center;
  margin-bottom: 60px;
}

.contato__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: stretch;
}

/* WhatsApp card */
.contato__wa-card {
  background: linear-gradient(135deg, #128c7e 0%, #25d366 100%);
  border-radius: 16px;
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contato__wa-card::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  top: -80px;
  right: -80px;
}

.contato__wa-card::after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  bottom: -60px;
  left: -60px;
}

.contato__wa-icon {
  position: relative;
  z-index: 1;
  font-size: 3.5rem;
  color: #fff;
  margin-bottom: 20px;
  animation: wa-bounce 3s ease-in-out infinite;
}

@keyframes wa-bounce {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-8px) rotate(5deg);
  }
}

.contato__wa-title {
  position: relative;
  z-index: 1;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 12px;
}

.contato__wa-desc {
  position: relative;
  z-index: 1;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 32px;
  line-height: 1.6;
}

.contato__wa-btn {
  position: relative;
  z-index: 1;
  background: #fff;
  color: var(--whatsapp-dark);
  padding: 14px 32px;
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all var(--transition);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.contato__wa-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.3);
}

/* Info card */
.contato__info-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 40px;
}

.contato__info-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 32px;
}

.contato__info-items {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.info-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.info-item__icon {
  width: 44px;
  height: 44px;
  background: rgba(204, 0, 0, 0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-item__icon i {
  color: var(--red-primary);
  font-size: 1rem;
}

.info-item__content strong {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 6px;
}

.info-item__content p,
.info-item__content a {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
}

.info-item__content a:hover {
  color: var(--red-primary);
}

.horario-row {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
  padding: 4px 0;
}

.horario-row strong {
  color: #fff !important;
  font-size: 0.9rem !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  margin-bottom: 0 !important;
  font-family: 'Inter', sans-serif !important;
  font-weight: 600 !important;
}

.horario-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
}

.horario-badge--open {
  background: rgba(37, 211, 102, 0.15);
  color: #25d366;
  border: 1px solid rgba(37, 211, 102, 0.25);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #050505;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 48px 0 32px;
}

.footer__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 32px;
}

.footer__brand {
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.footer__logo-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.2rem;
  color: #fff;
}

.footer__brand p {
  font-size: 0.85rem;
  color: var(--text-muted);
  max-width: 260px;
  line-height: 1.6;
}

.footer__links-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer__links-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.footer__links-group a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  transition: color var(--transition);
}

.footer__links-group a:hover {
  color: var(--red-primary);
}

.footer__social {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.footer__social-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.footer__social-links {
  display: flex;
  gap: 10px;
}

.footer__social-link {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  transition: all var(--transition);
}

.footer__social-link:hover {
  background: var(--red-primary);
  border-color: var(--red-primary);
  color: #fff;
  transform: translateY(-2px);
}

.footer__bottom {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer__bottom span {
  color: var(--red-primary);
}

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.wa-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 900;
  width: 58px;
  height: 58px;
  background: var(--whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.6rem;
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.5);
  transition: all var(--transition);
  opacity: 0;
  transform: scale(0.5);
  animation: wa-appear 0.5s ease 2s forwards;
}

@keyframes wa-appear {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.wa-float:hover {
  background: var(--whatsapp-dark);
  transform: scale(1.1) !important;
  box-shadow: 0 8px 36px rgba(37, 211, 102, 0.55);
}

.wa-float::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--whatsapp);
  opacity: 0.4;
  animation: wa-pulse 2.5s ease-in-out infinite;
}

@keyframes wa-pulse {
  0% {
    transform: scale(1);
    opacity: 0.4;
  }
  70% {
    transform: scale(1.8);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}

.wa-float__tooltip {
  position: absolute;
  right: calc(100% + 14px);
  background: #1a1a1a;
  color: #fff;
  padding: 7px 14px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
  font-family: 'Montserrat', sans-serif;
  opacity: 0;
  transform: translateX(6px);
  transition: all var(--transition);
  pointer-events: none;
}

.wa-float__tooltip::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: #1a1a1a;
}

.wa-float:hover .wa-float__tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* ============================================================
   ANIMAÇÕES DE ENTRADA — HERO (CSS puro, sem scroll)
   ============================================================ */

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

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

.hero__badge {
  animation: slideDown 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.3s both;
}

.hero__title {
  animation: slideUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.55s both;
}

.hero__subtitle {
  animation: fadeInUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.85s both;
}

.hero__actions {
  animation: fadeInUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) 1.05s both;
}

.hero__indicators {
  animation: fadeIn 0.6s ease 1.4s both;
}

.hero__scroll {
  animation: fadeIn 0.6s ease 1.6s both;
}

/* ============================================================
   AOS OVERRIDES
   ============================================================ */
[data-aos] {
  pointer-events: none;
}

[data-aos].aos-animate {
  pointer-events: auto;
}

/* ============================================================
   PRELOADER 3D
   ============================================================ */

.preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: #080808;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 40px;
  /* Noise texture sutil */
  background-image:
    radial-gradient(
      ellipse at 30% 70%,
      rgba(204, 0, 0, 0.06) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse at 70% 30%,
      rgba(0, 48, 135, 0.06) 0%,
      transparent 60%
    );
  transition: transform 0.9s cubic-bezier(0.76, 0, 0.24, 1);
}

.preloader.exit {
  transform: translateY(-100%);
}

/* ----- Cena 3D ----- */
.preloader__wheel-scene {
  perspective: 480px;
  perspective-origin: 50% 45%;
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.preloader__wheel {
  width: 180px;
  height: 180px;
  position: relative;
  animation: wheel-3d-spin 1.5s linear infinite;
  filter: drop-shadow(0 0 24px rgba(204, 0, 0, 0.45));
}

@keyframes wheel-3d-spin {
  from {
    transform: rotateY(-38deg) rotateZ(0deg);
  }
  to {
    transform: rotateY(-38deg) rotateZ(360deg);
  }
}

/* Pneu (ring externo escuro) */
.wheel__tire {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 18px solid #1a1a1a;
  box-shadow: inset 0 0 0 2px #2a2a2a;
}

/* Aro (rim vermelho) */
.wheel__rim {
  position: absolute;
  inset: 18px;
  border-radius: 50%;
  border: 10px solid var(--red-primary);
  box-shadow:
    0 0 0 1px rgba(204, 0, 0, 0.3),
    inset 0 0 20px rgba(204, 0, 0, 0.12);
  background: radial-gradient(
    circle,
    rgba(204, 0, 0, 0.05) 0%,
    transparent 70%
  );
}

/* Raios — 5 raios cruzando o centro, cada um a 36° de distância */
.wheel__spoke {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 4px;
  height: 110px; /* do centro ao aro: radius - hub - rim padding */
  margin-left: -2px;
  margin-top: -2px; /* alinhado ao centro */
  transform-origin: 2px 2px; /* pivô no centro do círculo */
  border-radius: 2px;
  background: linear-gradient(
    to bottom,
    rgba(204, 0, 0, 0.9) 0%,
    #888 50%,
    rgba(204, 0, 0, 0.9) 100%
  );
}

.wheel__spoke--1 {
  transform: rotate(0deg) translateX(-50%) translateY(-100%);
}
.wheel__spoke--2 {
  transform: rotate(72deg) translateX(-50%) translateY(-100%);
}
.wheel__spoke--3 {
  transform: rotate(144deg) translateX(-50%) translateY(-100%);
}
.wheel__spoke--4 {
  transform: rotate(216deg) translateX(-50%) translateY(-100%);
}
.wheel__spoke--5 {
  transform: rotate(288deg) translateX(-50%) translateY(-100%);
}

/* Hub central */
.wheel__hub {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 32px;
  height: 32px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #ff4444, #cc0000 50%, #880000);
  box-shadow:
    0 0 16px rgba(204, 0, 0, 0.8),
    0 0 0 3px rgba(204, 0, 0, 0.3);
  z-index: 1;
}

/* Parafusos do hub */
.wheel__bolt {
  position: absolute;
  width: 6px;
  height: 6px;
  background: radial-gradient(circle at 35% 35%, #ddd, #888);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  z-index: 2;
}

.wheel__bolt--1 {
  transform: translate(-50%, -50%) translateY(-18px);
}
.wheel__bolt--2 {
  transform: translate(-50%, -50%) rotate(72deg) translateY(-18px);
}
.wheel__bolt--3 {
  transform: translate(-50%, -50%) rotate(144deg) translateY(-18px);
}
.wheel__bolt--4 {
  transform: translate(-50%, -50%) rotate(216deg) translateY(-18px);
}
.wheel__bolt--5 {
  transform: translate(-50%, -50%) rotate(288deg) translateY(-18px);
}

/* ----- Branding ----- */
.preloader__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  animation: fade-in-brand 0.6s ease 0.4s both;
}

@keyframes fade-in-brand {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.preloader__logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 4px;
}

.preloader__cm {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.preloader__name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.4rem;
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.preloader__tagline {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

/* ----- Barra de progresso ----- */
.preloader__bar {
  width: 160px;
  height: 2px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 2px;
  overflow: hidden;
}

.preloader__bar-fill {
  height: 100%;
  width: 0%;
  border-radius: 2px;
  background: linear-gradient(
    90deg,
    var(--red-primary),
    #ff4444,
    var(--red-primary)
  );
  background-size: 200% 100%;
  animation:
    bar-grow 1.8s cubic-bezier(0.4, 0, 0.2, 1) 0.1s forwards,
    bar-shine 1.2s ease 0.2s infinite;
}

@keyframes bar-grow {
  from {
    width: 0%;
  }
  to {
    width: 100%;
  }
}

@keyframes bar-shine {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

/* ============================================================
   AVALIAÇÕES GOOGLE
   ============================================================ */

.avaliacoes {
  background: var(--dark-bg);
  padding: 90px 0;
  overflow: hidden;
}

.avaliacoes__header {
  text-align: center;
  margin-bottom: 52px;
}

.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  padding: 10px 22px;
  margin-bottom: 24px;
}

.google-badge__icon {
  display: flex;
  align-items: center;
  gap: 2px;
}

.google-badge__icon span {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1rem;
}

/* Google G letter colors */
.gc-blue {
  color: #4285f4;
}
.gc-red {
  color: #ea4335;
}
.gc-gold {
  color: #fbbc05;
}
.gc-green {
  color: #34a853;
}

.google-badge__rating {
  display: flex;
  align-items: center;
  gap: 8px;
}

.google-badge__stars {
  display: flex;
  gap: 2px;
}

.google-badge__stars i {
  color: #fbbc05;
  font-size: 0.9rem;
}

.google-badge__count {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

.google-badge__sep {
  width: 1px;
  height: 18px;
  background: rgba(255, 255, 255, 0.15);
}

/* Carousel wrapper */
.avaliacoes__carousel {
  position: relative;
  padding: 0 20px;
}

.avaliacoes__track-wrap {
  overflow: hidden;
  margin: 0 -8px;
  padding: 16px 8px;
}

.avaliacoes__track {
  display: flex;
  gap: 0;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

/* Review card */
.avaliacao-card {
  flex: 0 0 calc(33.333% - 16px);
  min-width: calc(33.333% - 16px);
  margin: 0 8px;
  background: var(--dark-card);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition:
    border-color var(--transition),
    box-shadow var(--transition);
}

.avaliacao-card:hover {
  border-color: rgba(251, 188, 5, 0.25);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

.avaliacao-card__top {
  display: flex;
  align-items: center;
  gap: 14px;
}

.avaliacao-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.1rem;
  color: #fff;
  flex-shrink: 0;
  text-transform: uppercase;
}

.avaliacao-card__info {
  flex: 1;
  min-width: 0;
}

.avaliacao-card__name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.avaliacao-card__meta {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.avaliacao-card__stars {
  display: flex;
  gap: 2px;
}

.avaliacao-card__stars i {
  color: #fbbc05;
  font-size: 0.85rem;
}

.avaliacao-card__text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.avaliacao-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.avaliacao-card__date {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.avaliacao-card__google {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.3px;
}

/* Prev / Next arrows */
.avaliacoes__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  flex-shrink: 0;
}

.avaliacoes__arrow:hover {
  background: var(--red-primary);
  border-color: var(--red-primary);
}

.avaliacoes__arrow--prev {
  left: -8px;
}
.avaliacoes__arrow--next {
  right: -8px;
}

.avaliacoes__arrow:disabled {
  opacity: 0.3;
  cursor: default;
}

.avaliacoes__arrow:disabled:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
}

/* Dots */
.avaliacoes__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 36px;
}

.avaliacoes__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  border: none;
  transition: all var(--transition);
}

.avaliacoes__dot.active {
  background: var(--red-primary);
  width: 24px;
  border-radius: 4px;
}

/* CTA link Google */
.avaliacoes__cta {
  text-align: center;
  margin-top: 40px;
}

.avaliacoes__cta a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.5px;
  transition: color var(--transition);
  text-transform: uppercase;
}

.avaliacoes__cta a:hover {
  color: #fbbc05;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .diferenciais__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sobre__grid {
    gap: 48px;
  }

  .avaliacao-card {
    flex: 0 0 calc(50% - 16px);
    min-width: calc(50% - 16px);
  }
}

@media (max-width: 768px) {
  :root {
    --nav-height: 60px;
  }

  /* Impede qualquer overflow horizontal no mobile */
  html,
  body {
    overflow-x: hidden;
    max-width: 100vw;
  }

  .section {
    padding: 56px 0;
  }

  /* ---- Navbar mobile ----
     Esconde APENAS os links e o botão WA — NÃO esconde .navbar__actions
     porque o hambúrguer está dentro dele. */
  .navbar__links {
    display: none;
  }

  .navbar__wa {
    display: none;
  }

  /* Mantém .navbar__actions visível mas só o hambúrguer aparece */
  .navbar__hamburger {
    display: flex;
  }

  /* Logo: esconde o tagline para economizar espaço */
  .navbar__logo-tagline {
    display: none;
  }

  /* ---- Hero mobile ---- */
  .hero {
    height: 75vh;
    min-height: 460px;
  }

  .hero__content {
    text-align: center;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: calc(var(--nav-height) - 8px);
  }

  .hero__badge {
    display: inline-flex;
    margin-left: auto;
    margin-right: auto;
  }

  .hero__title {
    font-size: clamp(2rem, 8vw, 2.8rem);
    max-width: 100%;
  }

  .hero__subtitle {
    font-size: 0.95rem;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero__actions {
    flex-direction: column;
    align-items: center;
  }

  .hero__actions .btn {
    width: 100%;
    max-width: 340px;
    justify-content: center;
  }

  .hero__scroll {
    display: none;
  }

  /* ---- Sobre mobile ---- */
  .sobre__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .sobre__image-wrap {
    order: -1;
  }

  .sobre__image-wrap::before {
    display: none;
  }

  .sobre__img {
    height: 260px;
  }

  .sobre__vintage-tag {
    left: 50%;
    transform: translateX(-50%);
    bottom: -20px;
    white-space: nowrap;
  }

  .sobre__stats {
    gap: 20px;
    flex-wrap: wrap;
  }

  .stat__number {
    font-size: 2.2rem;
  }

  /* ---- Serviços mobile ---- */
  .servicos__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .servicos__header .section__subtitle {
    font-size: 0.95rem;
  }

  /* ---- Diferenciais mobile ---- */
  .diferenciais__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* ---- Galeria mobile ---- */
  .galeria__grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 10px;
  }

  .galeria__item--large {
    grid-row: span 1;
  }

  .galeria__item img {
    min-height: 200px;
    height: 200px;
  }

  /* ---- Avaliações mobile ---- */
  .avaliacoes__carousel {
    padding: 0 0 64px; /* espaço inferior para setas centralizadas */
  }

  .avaliacoes__track-wrap {
    overflow: hidden;
    margin: 0;
    padding: 12px 0; /* zero lateral — card ocupa 100% sem vazar */
  }

  .avaliacao-card {
    flex: 0 0 100%;
    min-width: 100%;
    margin: 0;
  }

  /* Setas: saem de cima dos cards, vão para centro-inferior */
  .avaliacoes__arrow {
    top: auto;
    bottom: 10px;
    transform: none;
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
  }

  .avaliacoes__arrow--prev {
    left: calc(50% - 48px);
    right: auto;
  }

  .avaliacoes__arrow--next {
    left: calc(50% + 8px);
    right: auto;
  }

  /* ---- Localização mobile ---- */
  .localizacao__map {
    height: 280px;
  }

  .localizacao__cta {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .localizacao__cta .btn {
    width: 100%;
    justify-content: center;
  }

  /* ---- Contato mobile ---- */
  .contato__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contato__header .section__subtitle {
    font-size: 0.95rem;
  }

  /* ---- Footer mobile ---- */
  .footer__inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 28px;
  }

  .footer__brand p {
    max-width: 100%;
  }

  .footer__links-group {
    display: none; /* simplifica o footer no mobile */
  }

  .footer__social {
    align-items: center;
  }

  .footer__bottom {
    font-size: 0.75rem;
    line-height: 1.7;
  }

  /* ---- WhatsApp flutuante mobile ---- */
  .wa-float {
    bottom: 20px;
    right: 16px;
    width: 52px;
    height: 52px;
    font-size: 1.4rem;
  }

  /* ---- Preloader mobile ---- */
  .preloader__wheel-scene {
    width: 160px;
    height: 160px;
  }

  .preloader__wheel {
    width: 140px;
    height: 140px;
  }

  .preloader__name {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .contato__wa-card {
    padding: 36px 20px;
  }

  .contato__info-card {
    padding: 24px 16px;
  }

  .hero__title {
    font-size: clamp(1.8rem, 7vw, 2.4rem);
  }

  .servico-card {
    padding: 28px 20px;
  }

  .diferencial {
    padding: 28px 20px;
  }

  .avaliacao-card {
    padding: 22px 18px;
  }
}
