/* ============================================================
   DINHO CAR — HIGIENIZAÇÃO AUTOMOTIVA E SOFÁ
   style.css — Estilos principais (Premium Edition)
   ============================================================ */

/* ============================================================
   1. RESET & VARIÁVEIS CSS
   ============================================================ */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Cores principais */
  --color-bg:        #080808;
  --color-bg-2:      #0D0D0D;
  --color-surface:   #141414;
  --color-surface-2: #1C1C1C;
  --color-surface-3: #242424;
  --color-white:     #FFFFFF;
  --color-accent:    #D4A520;
  --color-accent-dark: #A67C10;
  --color-accent-glow: rgba(212, 165, 32, 0.18);
  --color-gold: #D4A520;
  --color-gold-light: #E5C96A;
  --color-text:      #DEDEDE;
  --color-text-muted: #7A7A7A;
  --color-border:    rgba(255, 255, 255, 0.06);
  --color-border-bright: rgba(255, 255, 255, 0.12);

  /* Tipografia */
  --font-base: 'Poppins', sans-serif;
  --fs-xs:   0.75rem;
  --fs-sm:   0.875rem;
  --fs-base: 1rem;
  --fs-md:   1.125rem;
  --fs-lg:   1.25rem;
  --fs-xl:   1.5rem;
  --fs-2xl:  2rem;
  --fs-3xl:  2.5rem;
  --fs-4xl:  3.75rem;

  /* Espaçamentos */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  1.5rem;
  --space-lg:  2.5rem;
  --space-xl:  5rem;
  --space-2xl: 8rem;

  /* Bordas */
  --radius-sm:   6px;
  --radius-md:   14px;
  --radius-lg:   22px;
  --radius-xl:   32px;
  --radius-full: 9999px;

  /* Sombras em camadas (luxo) */
  --shadow-sm:   0 2px 8px rgba(0,0,0,0.5);
  --shadow-card: 0 4px 16px rgba(0,0,0,0.6), 0 1px 3px rgba(0,0,0,0.8);
  --shadow-deep: 0 20px 60px rgba(0,0,0,0.7), 0 4px 16px rgba(0,0,0,0.5);
  --shadow-glow: 0 0 24px rgba(212, 165, 32, 0.35), 0 0 60px rgba(212, 165, 32, 0.12);
  --shadow-glow-sm: 0 0 12px rgba(212, 165, 32, 0.25);
  --shadow-gold: 0 0 24px rgba(200, 168, 75, 0.25);

  /* Transições cubic-bezier suaves */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.0, 0.0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html {
  width: 100%;
  min-height: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  overflow-x: hidden;
}

/* Scrollbar premium */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--color-bg); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--color-accent), var(--color-accent-dark));
  border-radius: var(--radius-full);
}

body {
  width: 100%;
  min-height: 100vh;
  font-family: var(--font-base);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Textura de grain sutil sobre todo o site */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.025;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: overlay;
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* ============================================================
   2. UTILITÁRIOS
   ============================================================ */

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.text-accent {
  color: var(--color-accent);
}

/* Cabeçalho de seção reutilizável */
.section-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--fs-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-accent);
  margin-bottom: var(--space-sm);
  padding: 0.3rem 1rem;
  border: 1px solid rgba(212, 165, 32, 0.25);
  border-radius: var(--radius-full);
  background: rgba(212, 165, 32, 0.05);
  backdrop-filter: blur(4px);
}

.section-label::before,
.section-label::after {
  content: '';
  display: block;
  width: 18px;
  height: 1px;
  background: var(--color-accent);
  opacity: 0.6;
}

.section-title {
  font-size: var(--fs-3xl);
  font-weight: 800;
  color: var(--color-white);
  line-height: 1.15;
  margin-bottom: var(--space-sm);
  letter-spacing: -0.02em;
}

.section-desc {
  font-size: var(--fs-md);
  color: var(--color-text-muted);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Divider decorativo entre seções */
.section-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
  margin: var(--space-sm) auto 0;
  border-radius: var(--radius-full);
}

/* Quebra de linha só no desktop */
.br-desktop { display: none; }
@media (min-width: 768px) { .br-desktop { display: block; } }

/* ============================================================
   3. BOTÕES
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 0.8rem 1.9rem;
  border-radius: var(--radius-full);
  font-family: var(--font-base);
  font-size: var(--fs-sm);
  font-weight: 600;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: transform 0.35s var(--ease-spring), box-shadow 0.35s var(--ease), background 0.25s var(--ease), border-color 0.25s var(--ease);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.01em;
}

/* Efeito shimmer elegante */
.btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(105deg, transparent 20%, rgba(255,255,255,0.18) 50%, transparent 80%);
  transform: skewX(-15deg);
  transition: left 0.6s var(--ease);
}
.btn:hover::after {
  left: 140%;
}

/* Botão primário (verde) */
.btn--primary {
  background: linear-gradient(135deg, var(--color-accent) 0%, #A67C10 60%, #7A5A00 100%);
  color: #0a0800;
  border-color: rgba(212, 165, 32, 0.3);
}
.btn--primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: var(--shadow-glow), 0 8px 24px rgba(0,0,0,0.5);
}
.btn--primary:active {
  transform: translateY(0) scale(0.98);
}

/* Botão WhatsApp */
.btn--whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #1aab53 60%, #128C7E 100%);
  color: var(--color-white);
  border-color: rgba(37, 211, 102, 0.3);
}
.btn--whatsapp:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 0 28px rgba(37, 211, 102, 0.45), 0 8px 24px rgba(0,0,0,0.5);
}
.btn--whatsapp:active {
  transform: translateY(0) scale(0.98);
}

/* Botão contorno */
.btn--outline {
  background: rgba(255,255,255,0.03);
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--color-white);
  backdrop-filter: blur(4px);
}
.btn--outline:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  background: rgba(212, 165, 32, 0.06);
  transform: translateY(-2px);
  box-shadow: 0 0 16px rgba(212, 165, 32, 0.15);
}

/* Tamanhos */
.btn--lg {
  padding: 1.05rem 2.6rem;
  font-size: var(--fs-base);
}
.btn--sm {
  padding: 0.55rem 1.2rem;
  font-size: var(--fs-xs);
}

/* ============================================================
   4. ANIMAÇÕES DE SCROLL (FADE-IN)
   ============================================================ */

.fade-in {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Variação com slide da esquerda */
.fade-in-left {
  opacity: 0;
  transform: translateX(-36px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Atraso escalonado para grids */
.fade-in:nth-child(1) { transition-delay: 0.05s; }
.fade-in:nth-child(2) { transition-delay: 0.15s; }
.fade-in:nth-child(3) { transition-delay: 0.25s; }
.fade-in:nth-child(4) { transition-delay: 0.35s; }
.fade-in:nth-child(5) { transition-delay: 0.18s; }
.fade-in:nth-child(6) { transition-delay: 0.28s; }

/* ============================================================
   5. HEADER
   ============================================================ */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.1rem 0;
  transition: background 0.45s var(--ease), border-color 0.45s var(--ease), box-shadow 0.45s var(--ease);
  border-bottom: 1px solid transparent;
}

/* Header transparente no topo com borda sutil */
.header.scrolled {
  background: rgba(8, 8, 8, 0.88);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom-color: rgba(255, 255, 255, 0.06);
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.7), 0 1px 0 rgba(212, 165, 32, 0.08);
}

.header__inner {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

/* Logo */
.header__logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

/* Ícone do logo */
.logo__icon-wrap {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0a0800;
  font-size: 1.2rem;
  flex-shrink: 0;
  box-shadow: 0 0 14px rgba(212, 165, 32, 0.3);
  transition: box-shadow 0.35s var(--ease), transform 0.35s var(--ease-spring);
}

.header__logo:hover .logo__icon-wrap {
  box-shadow: 0 0 24px rgba(212, 165, 32, 0.6);
  transform: scale(1.05);
}

/* Texto do logo */
.logo__text {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: -0.01em;
  line-height: 1;
}

.logo__text--accent {
  color: var(--color-accent);
}

/* Fallback (caso a imagem não carregue) */
.logo__icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0a0800;
  font-size: var(--fs-base);
  box-shadow: 0 0 16px rgba(212, 165, 32, 0.3), inset 0 1px 0 rgba(255,255,255,0.15);
  transition: box-shadow var(--transition);
}

.header__logo:hover .logo__icon {
  box-shadow: var(--shadow-glow), inset 0 1px 0 rgba(255,255,255,0.2);
}

.logo__text {
  font-size: var(--fs-xl);
  font-weight: 800;
  color: var(--color-white);
  letter-spacing: -0.03em;
}

.logo__accent {
  color: var(--color-accent);
}

/* Navegação */
.header__nav {
  margin-left: auto;
}

.nav__list {
  display: flex;
  gap: var(--space-lg);
}

.nav__link {
  font-size: var(--fs-sm);
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  position: relative;
  transition: color var(--transition);
  padding-bottom: 2px;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: linear-gradient(90deg, var(--color-accent), transparent);
  transition: width 0.4s var(--ease);
  border-radius: var(--radius-full);
}

.nav__link:hover,
.nav__link.active {
  color: var(--color-white);
}

.nav__link:hover::after,
.nav__link.active::after {
  width: 100%;
}

/* CTA no header */
.header__cta {
  margin-left: auto;
  padding: 0.55rem 1.2rem;
  font-size: var(--fs-xs);
}

/* Hambúrguer (mobile) */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-left: auto;
}

.hamburger__line {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--color-white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
  transform-origin: center;
}

/* Animação do hambúrguer quando ativo */
.hamburger.active .hamburger__line:nth-child(1) {
  transform: translateY(8.25px) rotate(45deg);
}
.hamburger.active .hamburger__line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.active .hamburger__line:nth-child(3) {
  transform: translateY(-8.25px) rotate(-45deg);
}

/* ============================================================
   6. HERO SECTION
   ============================================================ */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background-image: url('https://images.unsplash.com/photo-1503376780353-7e6692767b70?w=1920&q=85');
  background-size: cover;
  background-position: center 40%;
  background-attachment: fixed;
  isolation: isolate;
  overflow: hidden;
}

/* Overlay multíplas camadas para sensação cinematográfica */
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 15% 55%, rgba(212, 165, 32, 0.06) 0%, transparent 70%),
    linear-gradient(105deg, rgba(8,8,8,0.97) 0%, rgba(8,8,8,0.82) 45%, rgba(8,8,8,0.93) 100%);
  z-index: 0;
}

/* Orbe de brilho verde no fundo */
.hero__overlay::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: 5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212, 165, 32, 0.08) 0%, transparent 65%);
  border-radius: 50%;
  filter: blur(40px);
  animation: orbeFloat 8s ease-in-out infinite;
}

@keyframes orbeFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}

/* Linha horizontal decorativa no topo do hero */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(212, 165, 32, 0.4) 30%, rgba(212, 165, 32, 0.6) 50%, rgba(212, 165, 32, 0.4) 70%, transparent 100%);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 1;
  padding-top: 100px;
  padding-bottom: var(--space-xl);
  max-width: 720px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--fs-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-accent);
  margin-bottom: var(--space-md);
  padding: 0.35rem 1rem;
  border: 1px solid rgba(212, 165, 32, 0.3);
  border-radius: var(--radius-full);
  background: rgba(212, 165, 32, 0.06);
  backdrop-filter: blur(8px);
  animation: fadeDown 0.9s var(--ease-out) forwards;
}

.hero__title {
  font-size: clamp(2.6rem, 7.5vw, var(--fs-4xl));
  font-weight: 800;
  color: var(--color-white);
  line-height: 1.08;
  margin-bottom: var(--space-md);
  letter-spacing: -0.03em;
  animation: fadeDown 0.9s var(--ease-out) 0.18s both;
}

.hero__title--accent {
  display: block;
  background: linear-gradient(135deg, #F0C840 0%, #D4A520 40%, #FFE090 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 20px rgba(212, 165, 32, 0.4));
}

.hero__subtitle {
  font-size: var(--fs-md);
  color: rgba(222, 222, 222, 0.6);
  margin-bottom: var(--space-lg);
  line-height: 1.8;
  font-weight: 300;
  animation: fadeDown 0.9s var(--ease-out) 0.35s both;
}

.hero__actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  margin-bottom: var(--space-xl);
  animation: fadeDown 0.9s var(--ease-out) 0.52s both;
}

/* Ticker de especialidades */
.hero__ticker {
  position: relative;
  margin-top: var(--space-lg);
  padding-top: var(--space-sm);
  border-top: 1px solid rgba(255,255,255,0.07);
  overflow: hidden;
  animation: fadeDown 0.9s var(--ease-out) 0.68s both;
  /* Fade nas bordas */
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.hero__ticker-track {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  width: max-content;
  animation: tickerScroll 28s linear infinite;
}

.hero__ticker:hover .hero__ticker-track {
  animation-play-state: paused;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: var(--fs-xs);
  font-weight: 600;
  color: rgba(222, 222, 222, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
  transition: color 0.25s var(--ease);
}

.ticker-item i {
  color: var(--color-accent);
  font-size: 0.8rem;
}

.ticker-sep {
  color: rgba(212, 165, 32, 0.35);
  font-size: 0.6rem;
  flex-shrink: 0;
}

@keyframes tickerScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Indicador de scroll */
.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.scroll-indicator {
  width: 26px;
  height: 42px;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-full);
  position: relative;
}

.scroll-indicator::after {
  content: '';
  position: absolute;
  top: 7px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 7px;
  background: var(--color-accent);
  border-radius: var(--radius-full);
  animation: scrollBounce 2.2s var(--ease) infinite;
  box-shadow: 0 0 6px var(--color-accent);
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
  60% { transform: translateX(-50%) translateY(13px); opacity: 0.2; }
}

@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-22px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   7. SERVIÇOS
   ============================================================ */

.services {
  padding: var(--space-2xl) 0;
  background: var(--color-surface);
  position: relative;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-md);
}

.service-card {
  background: linear-gradient(145deg, var(--color-surface) 0%, var(--color-surface-2) 100%);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: transform 0.45s var(--ease-spring), border-color 0.35s var(--ease), box-shadow 0.45s var(--ease);
  position: relative;
  overflow: hidden;
}

/* Linha de cor no topo do card */
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}

/* Brilho interno no hover */
.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 20% 20%, rgba(212, 165, 32, 0.05) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.45s var(--ease);
  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 165, 32, 0.25);
  box-shadow: 0 20px 50px rgba(0,0,0,0.6), 0 0 30px rgba(212, 165, 32, 0.08), inset 0 1px 0 rgba(255,255,255,0.04);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover::after {
  opacity: 1;
}

.service-card__icon {
  width: 58px;
  height: 58px;
  background: linear-gradient(135deg, rgba(212, 165, 32, 0.12) 0%, rgba(212, 165, 32, 0.04) 100%);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  font-size: 1.4rem;
  margin-bottom: var(--space-md);
  border: 1px solid rgba(212, 165, 32, 0.18);
  transition: box-shadow 0.35s var(--ease), transform 0.35s var(--ease-spring);
  position: relative;
  z-index: 1;
}

.service-card:hover .service-card__icon {
  box-shadow: 0 0 20px rgba(212, 165, 32, 0.3), inset 0 0 16px rgba(212, 165, 32, 0.06);
  transform: scale(1.08);
}

.service-card__title {
  font-size: var(--fs-lg);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: var(--space-xs);
  letter-spacing: -0.01em;
  position: relative;
  z-index: 1;
}

.service-card__desc {
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: var(--space-md);
  position: relative;
  z-index: 1;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--color-accent);
  transition: gap 0.3s var(--ease-spring), opacity var(--transition);
  position: relative;
  z-index: 1;
}

.service-card__link i {
  font-size: 0.75rem;
  transition: transform 0.3s var(--ease-spring);
}

.service-card__link:hover {
  gap: 0.8rem;
}

.service-card__link:hover i {
  transform: translateX(4px);
}

/* ============================================================
   8. GALERIA
   ============================================================ */

.gallery {
  padding: var(--space-2xl) 0;
  background: var(--color-bg);
  position: relative;
}

.gallery__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: var(--space-lg);
  justify-content: center;
}

.gallery__tab {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  border: 1px solid var(--color-border-bright);
  background: var(--color-surface);
  color: rgba(255, 255, 255, 0.55);
  font-size: var(--fs-sm);
  font-weight: 500;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.3s var(--ease);
}

.gallery__tab:hover {
  border-color: rgba(212, 165, 32, 0.4);
  color: rgba(255, 255, 255, 0.85);
}

.gallery__tab.active {
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
  border-color: var(--color-accent);
  color: #0a0800;
  font-weight: 600;
  box-shadow: 0 0 16px rgba(212, 165, 32, 0.3);
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 12px;
}

.gallery__item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
  border: 1px solid var(--color-border);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease),
              border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.gallery__item.hidden {
  display: none;
}

.gallery__more-wrap {
  display: flex;
  justify-content: center;
  margin-top: var(--space-lg);
}

.gallery__item:hover {
  border-color: rgba(212, 165, 32, 0.3);
  box-shadow: 0 12px 40px rgba(0,0,0,0.6), 0 0 20px rgba(212, 165, 32, 0.08);
}

.gallery__item img,
.gallery__item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease), filter 0.4s var(--ease);
  filter: brightness(0.92) saturate(0.9);
}

.gallery__item:hover img,
.gallery__item:hover video {
  transform: scale(1.08);
  filter: brightness(1) saturate(1.1);
}

/* Labels antes/depois */
.gallery__labels {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  display: flex;
  gap: 6px;
}

.label {
  font-size: 10px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  backdrop-filter: blur(6px);
}

.label--before {
  background: rgba(220, 50, 50, 0.75);
  color: #fff;
  border: 1px solid rgba(255,100,100,0.3);
}

.label--after {
  background: rgba(212, 165, 32, 0.75);
  color: #0a0800;
  border: 1px solid rgba(212, 165, 32, 0.3);
}

/* Overlay hover na galeria */
.gallery__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, rgba(212, 165, 32, 0.08) 60%, transparent 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  color: var(--color-white);
}

.gallery__overlay i {
  font-size: 2rem;
  filter: drop-shadow(0 0 12px rgba(212, 165, 32, 0.8));
  transform: scale(0.8);
  transition: transform 0.4s var(--ease-spring);
}

.gallery__item:hover .gallery__overlay {
  opacity: 1;
}

.gallery__item:hover .gallery__overlay i {
  transform: scale(1);
}

/* Modal de imagem */
.modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}

.modal.open {
  opacity: 1;
  pointer-events: all;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  cursor: pointer;
}

.modal__content {
  position: relative;
  z-index: 1;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-sm);
}

.modal__img {
  max-width: 80vw;
  max-height: 85vh;
  border-radius: var(--radius-md);
  object-fit: contain;
  box-shadow: 0 0 80px rgba(0, 0, 0, 0.9), 0 0 40px rgba(212, 165, 32, 0.06);
  border: 1px solid rgba(255,255,255,0.06);
}

.modal__video {
  max-width: 80vw;
  max-height: 85vh;
  width: auto;
  height: auto;
  object-fit: contain;
  background: #000;
  border-radius: var(--radius-md);
  box-shadow: 0 0 80px rgba(0, 0, 0, 0.9), 0 0 40px rgba(212, 165, 32, 0.06);
  border: 1px solid rgba(255,255,255,0.06);
  display: none;
}

.modal__close {
  position: fixed;
  top: var(--space-md);
  right: var(--space-md);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--color-white);
  font-size: var(--fs-xl);
  cursor: pointer;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), border-color var(--transition);
  backdrop-filter: blur(8px);
}

.modal__close:hover {
  background: rgba(212, 165, 32, 0.15);
  border-color: rgba(212, 165, 32, 0.3);
}

.modal__nav {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--color-white);
  font-size: var(--fs-xl);
  cursor: pointer;
  width: 50px;
  height: 50px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease);
  flex-shrink: 0;
  backdrop-filter: blur(8px);
}

.modal__nav:hover {
  background: rgba(212, 165, 32, 0.2);
  border-color: rgba(212, 165, 32, 0.4);
  box-shadow: 0 0 16px rgba(212, 165, 32, 0.2);
}

/* ============================================================
   9. AVALIAÇÕES
   ============================================================ */

.reviews {
  padding: var(--space-2xl) 0;
  background: var(--color-surface);
  position: relative;
  overflow: hidden;
}

/* Orbe de fundo decorativo */
.reviews::before {
  content: '';
  position: absolute;
  top: 50%;
  right: -200px;
  transform: translateY(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 165, 32, 0.04) 0%, transparent 65%);
  pointer-events: none;
}

/* Nota global */
.reviews__rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
  margin-top: var(--space-md);
}

.rating__stars {
  color: #FFD700;
  font-size: var(--fs-xl);
  display: flex;
  gap: 3px;
  filter: drop-shadow(0 0 6px rgba(255, 215, 0, 0.4));
}

.rating__score {
  font-size: var(--fs-3xl);
  font-weight: 800;
  color: var(--color-white);
  letter-spacing: -0.03em;
}

.rating__count {
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
  padding-left: var(--space-xs);
  border-left: 1px solid rgba(255,255,255,0.12);
}

/* Bloco de avaliações vindas do Google */
.reviews__google {
  margin-top: var(--space-lg);
  border: 1px solid var(--color-border-bright);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0,0,0,0.45);
  background: var(--color-bg);
  padding: var(--space-md);
}

.reviews__carousel {
  overflow: hidden;
}

.reviews__google-list {
  display: flex;
  gap: 24px;
  transition: transform 0.6s var(--ease-out);
  will-change: transform;
}

.reviews__loading {
  width: 100%;
  flex-shrink: 0;
  text-align: center;
  color: var(--color-text-muted);
  font-size: var(--fs-sm);
  padding: var(--space-lg) var(--space-sm);
}

.reviews__actions {
  margin-top: var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.reviews__note {
  margin-top: var(--space-sm);
  text-align: center;
  color: rgba(255,255,255,0.45);
  font-size: var(--fs-xs);
}

/* Carrossel */
.carousel {
  position: relative;
  overflow: hidden;
}

.carousel__track {
  display: flex;
  gap: 24px;
  transition: transform 0.6s var(--ease-out);
  will-change: transform;
}

/* Card de avaliação */
.review-card {
  background: linear-gradient(145deg, var(--color-bg) 0%, rgba(20,20,20,0.95) 100%);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  width: calc((100% / 3) - 16px);
  flex-shrink: 0;
  transition: border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}

/* Aspa decorativa */
.review-card::before {
  content: '\201C';
  position: absolute;
  top: 8px;
  right: 20px;
  font-size: 6rem;
  font-weight: 800;
  color: var(--color-accent);
  opacity: 0.07;
  line-height: 1;
  font-family: Georgia, serif;
  pointer-events: none;
}

.review-card:hover {
  border-color: rgba(212, 165, 32, 0.2);
  box-shadow: 0 12px 40px rgba(0,0,0,0.5), 0 0 20px rgba(212, 165, 32, 0.05);
}

.review-card__header {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
}

.review-card__avatar {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
  color: #0a0800;
  font-weight: 700;
  font-size: var(--fs-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 12px rgba(212, 165, 32, 0.25);
}

/* Variações de cor dos avatares */
.review-card__avatar--b { background: linear-gradient(135deg, #2196F3, #1565C0); color: #fff; box-shadow: 0 0 12px rgba(33,150,243,0.25); }
.review-card__avatar--c { background: linear-gradient(135deg, #FF9800, #E65100); color: #fff; box-shadow: 0 0 12px rgba(255,152,0,0.25); }
.review-card__avatar--d { background: linear-gradient(135deg, #9C27B0, #4A148C); color: #fff; box-shadow: 0 0 12px rgba(156,39,176,0.25); }
.review-card__avatar--e { background: linear-gradient(135deg, #F44336, #B71C1C); color: #fff; box-shadow: 0 0 12px rgba(244,67,54,0.25); }
.review-card__avatar--f { background: linear-gradient(135deg, #00BCD4, #006064); color: #fff; box-shadow: 0 0 12px rgba(0,188,212,0.25); }
.review-card__avatar--g { background: linear-gradient(135deg, #E91E63, #880E4F); color: #fff; box-shadow: 0 0 12px rgba(233,30,99,0.25); }
.review-card__avatar--h { background: linear-gradient(135deg, #607D8B, #263238); color: #fff; box-shadow: 0 0 12px rgba(96,125,139,0.25); }

.review-card__name {
  display: block;
  color: var(--color-white);
  font-size: var(--fs-sm);
  font-weight: 600;
}

.review-card__stars {
  color: #FFD700;
  font-size: 11px;
  display: flex;
  gap: 2px;
  margin-top: 3px;
}

.review-card__text {
  font-size: var(--fs-sm);
  color: rgba(222,222,222,0.6);
  line-height: 1.8;
  margin-bottom: var(--space-sm);
  font-style: italic;
  font-weight: 300;
}

.review-card__date {
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.2);
  letter-spacing: 0.02em;
}

/* Controles do carrossel */
.carousel__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

.carousel__btn {
  background: var(--color-surface);
  border: 1px solid var(--color-border-bright);
  color: rgba(255,255,255,0.6);
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.35s var(--ease);
}

.carousel__btn:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #0a0800;
  box-shadow: var(--shadow-glow-sm);
}

.carousel__dots {
  display: flex;
  gap: 6px;
  align-items: center;
}

.carousel__dot {
  width: 6px;
  height: 6px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.15);
  cursor: pointer;
  transition: all 0.4s var(--ease);
  border: none;
}

.carousel__dot.active {
  background: var(--color-accent);
  width: 22px;
  box-shadow: 0 0 8px rgba(212, 165, 32, 0.5);
}

/* ============================================================
   10. SOBRE
   ============================================================ */

.about {
  padding: var(--space-2xl) 0;
  background: var(--color-bg);
  position: relative;
  overflow: hidden;
}

/* Linha de luz no topo da seção */
.about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 165, 32, 0.4), transparent);
}

.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Imagem com borda decorativa */
.about__image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
}

/* Moldura de luz atrás da imagem */
.about__image::before {
  content: '';
  position: absolute;
  inset: -12px;
  border-radius: calc(var(--radius-lg) + 12px);
  border: 1px solid rgba(212, 165, 32, 0.12);
  pointer-events: none;
}

.about__image::after {
  content: '';
  position: absolute;
  inset: -24px;
  border-radius: calc(var(--radius-lg) + 24px);
  border: 1px solid rgba(212, 165, 32, 0.05);
  pointer-events: none;
}

.about__image img {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  height: 520px;
  filter: brightness(0.88) saturate(0.85);
  transition: filter 0.5s var(--ease);
  box-shadow: var(--shadow-deep);
}

.about__image:hover img {
  filter: brightness(0.95) saturate(1);
}

.about__experience {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
  color: #0a0800;
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-md);
  text-align: center;
  font-size: var(--fs-sm);
  font-weight: 600;
  line-height: 1.3;
  box-shadow: var(--shadow-glow), 0 12px 32px rgba(0,0,0,0.6);
  border: 1px solid rgba(212, 165, 32, 0.3);
}

.about__years {
  display: block;
  font-size: var(--fs-3xl);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
}

.about__text {
  padding-left: var(--space-sm);
}

.about__text .section-title {
  text-align: left;
  margin-bottom: var(--space-md);
}

.about__text p {
  color: rgba(222,222,222,0.55);
  margin-bottom: var(--space-sm);
  line-height: 1.85;
  font-size: var(--fs-sm);
}

/* Lista de diferenciais */
.about__list {
  margin: var(--space-md) 0 var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.about__list li {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: var(--fs-sm);
  color: var(--color-text);
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.about__list li i {
  color: var(--color-accent);
  flex-shrink: 0;
  font-size: 0.85rem;
  filter: drop-shadow(0 0 4px rgba(212, 165, 32, 0.5));
}

/* ============================================================
   11. CONTATO
   ============================================================ */

.contact {
  padding: var(--space-2xl) 0;
  background: var(--color-bg);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}

.contact__item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
  padding: var(--space-sm);
  border-radius: var(--radius-md);
  transition: background var(--transition);
}

.contact__item:hover {
  background: rgba(255,255,255,0.02);
}

.contact__icon {
  width: 48px;
  height: 48px;
  background: rgba(212, 165, 32, 0.07);
  border: 1px solid rgba(212, 165, 32, 0.18);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  font-size: var(--fs-lg);
  flex-shrink: 0;
  transition: box-shadow var(--transition);
}

.contact__item:hover .contact__icon {
  box-shadow: 0 0 14px rgba(212, 165, 32, 0.2);
}

.contact__item strong {
  display: block;
  color: var(--color-white);
  margin-bottom: 3px;
  font-size: var(--fs-sm);
  font-weight: 600;
}

.contact__item p {
  color: var(--color-text-muted);
  font-size: var(--fs-sm);
}

/* Card CTA de contato */
.contact__cta-card {
  background: linear-gradient(145deg, var(--color-surface) 0%, var(--color-surface-2) 100%);
  border: 1px solid var(--color-border-bright);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  position: relative;
  overflow: hidden;
}

/* Brilho de fundo no card de CTA */
.contact__cta-card::before {
  content: '';
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(37,211,102,0.08) 0%, transparent 65%);
  pointer-events: none;
}

.contact__cta-icon {
  font-size: 3.5rem;
  color: #25D366;
  margin-bottom: var(--space-xs);
  filter: drop-shadow(0 0 16px rgba(37,211,102,0.5));
  animation: iconPulse 3s ease-in-out infinite;
}

@keyframes iconPulse {
  0%, 100% { filter: drop-shadow(0 0 16px rgba(37,211,102,0.5)); }
  50% { filter: drop-shadow(0 0 28px rgba(37,211,102,0.8)); }
}

.contact__cta-card h3 {
  font-size: var(--fs-xl);
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: -0.02em;
}

.contact__cta-card p {
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
  max-width: 280px;
  line-height: 1.7;
}

.contact__map {
  margin-top: var(--space-lg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border-bright);
  box-shadow: 0 16px 40px rgba(0,0,0,0.45);
}

.contact__map iframe {
  width: 100%;
  height: 380px;
  border: 0;
  display: block;
  filter: grayscale(0.1) contrast(1.05);
}

/* ============================================================
   12. FOOTER
   ============================================================ */

.footer {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  position: relative;
}

/* Linha de gradiente no topo do footer */
.footer::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(212, 165, 32, 0.4) 30%, rgba(212, 165, 32, 0.6) 50%, rgba(212, 165, 32, 0.4) 70%, transparent 100%);
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-xl);
  padding: var(--space-xl) var(--space-md);
}

.footer__logo {
  margin-bottom: var(--space-sm);
}

.footer__tagline {
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-xs);
}

.footer__address {
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.footer__address i {
  color: var(--color-accent);
  font-size: 0.85rem;
}

.footer__title {
  font-size: var(--fs-xs);
  font-weight: 700;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: var(--space-md);
}

.footer__links ul {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer__links a {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.35);
  transition: color 0.3s var(--ease);
}

.footer__links a:hover {
  color: var(--color-accent);
}

/* Redes sociais */
.social__links {
  display: flex;
  gap: var(--space-xs);
  margin-bottom: var(--space-sm);
}

.social__link {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.35);
  transition: all 0.35s var(--ease-spring);
  border: 1px solid var(--color-border);
}

.social__link:hover {
  background: var(--color-accent);
  color: #0a0800;
  border-color: var(--color-accent);
  transform: translateY(-4px) scale(1.1);
  box-shadow: var(--shadow-glow-sm);
}

.footer__phone {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.35);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.footer__phone i {
  color: var(--color-accent);
  font-size: 0.8rem;
}

/* Rodapé inferior */
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.04);
  padding: var(--space-md) 0;
  text-align: center;
}

.footer__bottom p {
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.2);
  letter-spacing: 0.02em;
}

/* ============================================================
   13. BOTÃO FLUTUANTE WHATSAPP
   ============================================================ */

.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  width: 58px;
  height: 58px;
  background: linear-gradient(135deg, #25D366 0%, #1db954 60%, #128C7E 100%);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  color: var(--color-white);
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.45), 0 2px 8px rgba(0,0,0,0.5);
  transition: transform 0.35s var(--ease-spring), box-shadow 0.35s var(--ease);
  animation: wpPulse 3s ease-in-out infinite;
}

.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: var(--radius-full);
  border: 1.5px solid rgba(37, 211, 102, 0.3);
  animation: wpRing 3s ease-in-out infinite;
}

.whatsapp-float::after {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(37, 211, 102, 0.12);
  animation: wpRing 3s ease-in-out 0.5s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.12) translateY(-2px);
  box-shadow: 0 8px 36px rgba(37, 211, 102, 0.6), 0 4px 16px rgba(0,0,0,0.6);
  animation: none;
}

.whatsapp-float:hover::before,
.whatsapp-float:hover::after {
  animation: none;
  opacity: 0;
}

@keyframes wpPulse {
  0%, 100% { box-shadow: 0 4px 24px rgba(37,211,102,0.45), 0 2px 8px rgba(0,0,0,0.5); }
  50% { box-shadow: 0 4px 32px rgba(37,211,102,0.65), 0 2px 8px rgba(0,0,0,0.5); }
}

@keyframes wpRing {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.15); opacity: 0; }
}

/* ============================================================
   14. RESPONSIVIDADE — TABLET (max 1024px)
   ============================================================ */

@media (max-width: 1024px) {
  .footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
  }

  .about__inner {
    gap: var(--space-lg);
  }

  .review-card {
    min-width: calc(50% - var(--space-md));
  }

  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero__content {
    max-width: 600px;
  }
}

/* ============================================================
   15. RESPONSIVIDADE — MOBILE (max 768px)
   ============================================================ */

@media (max-width: 768px) {

  .container {
    padding-left: var(--space-sm);
    padding-right: var(--space-sm);
  }

  /* Header */
  .header__nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(300px, 80vw);
    height: 100vh;
    background: rgba(8, 8, 8, 0.98);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    padding: 90px var(--space-lg) var(--space-lg);
    transition: right 0.45s var(--ease);
    border-left: 1px solid var(--color-border);
    z-index: 999;
  }

  .header__nav.open {
    right: 0;
  }

  .nav__list {
    flex-direction: column;
    gap: var(--space-md);
  }

  .nav__link {
    font-size: var(--fs-lg);
  }

  .header__cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  /* Hero */
  .hero {
    background-attachment: scroll;
  }

  .hero__title {
    font-size: 2.2rem;
  }

  .hero__ticker {
    margin-top: var(--space-md);
  }

  /* Seções */
  .section-title {
    font-size: var(--fs-2xl);
  }

  /* Sobre */
  .about__inner {
    grid-template-columns: 1fr;
  }

  .about__image img {
    height: 300px;
  }

  .about__experience {
    right: var(--space-sm);
    bottom: -16px;
  }

  .about__text {
    padding-left: 0;
  }

  /* Contato */
  .contact__grid {
    grid-template-columns: 1fr;
  }

  .contact__map iframe {
    height: 320px;
  }

  /* Footer */
  .footer__inner {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    padding: var(--space-lg) var(--space-md);
  }

  /* Carrossel - 1 card por vez */
  .review-card {
    min-width: 100%;
  }

  /* Modal */
  .modal__nav {
    display: none;
  }

  .modal__content {
    position: fixed;
    inset: 0;
    width: 100%;
    max-width: 100vw;
    height: 100%;
    max-height: none;
    padding: 0;
    gap: 0;
    overflow: hidden;
    background: #000;
  }

  .modal__img {
    width: 94vw;
    max-width: 94vw;
    max-height: 78vh;
  }

  .modal__video {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    max-height: none !important;
    object-fit: contain !important;
    transform: none !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    background: #000 !important;
  }

  /* Galeria */
  .gallery__tabs {
    gap: 8px;
  }

  .gallery__tab {
    font-size: var(--fs-xs);
    padding: 7px 13px;
  }

  .gallery__grid {
    grid-template-columns: 1fr 1fr;
  }

  /* WhatsApp float menor no mobile */
  .whatsapp-float {
    width: 52px;
    height: 52px;
    font-size: 1.5rem;
    bottom: 1.5rem;
    right: 1.5rem;
  }
}

/* ============================================================
   16. RESPONSIVIDADE — MOBILE PEQUENO (max 480px)
   ============================================================ */

@media (max-width: 480px) {
  .container {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .gallery__grid {
    grid-template-columns: 1fr;
  }

  .services__grid {
    grid-template-columns: 1fr;
  }

  .reviews__rating {
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
  }

  .modal__content {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    padding: 0;
    overflow: hidden;
    background: #000;
  }

  .modal__img {
    width: 96vw;
    max-width: 96vw;
    max-height: 72vh;
    border-radius: var(--radius-sm);
  }
}
