/* =====================================================
   ESTILO MIX — CSS Principal
   Paleta: Amarelo #FFD700 | Preto #0A0A0A | Branco #FFFFFF
   Regra 60/30/10: Branco / Preto / Amarelo
   ===================================================== */

:root {
  --amarelo:       #C9A84C;
  --amarelo-escuro: #A8873C;
  --amarelo-claro: #F5EDD4;
  --amarelo-bg:    rgba(201, 168, 76, 0.10);
  --preto:         #0A0A0A;
  --escuro:        #1A1A1A;
  --escuro-meio:   #2A2A2A;
  --branco:        #FFFFFF;
  --cinza-claro:   #F8F8F8;
  --cinza:         #6B6B6B;
  --cinza-medio:   #ADADAD;

  --header-h:  72px;
  --raio:      12px;
  --raio-lg:   20px;
  --trans:     0.3s ease;
  --sombra:    0 4px 24px rgba(0, 0, 0, 0.08);
  --sombra-lg: 0 8px 40px rgba(0, 0, 0, 0.14);
  --sombra-am: 0 4px 20px rgba(201, 168, 76, 0.40);
}

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

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

body {
  font-family: 'Poppins', sans-serif;
  color: var(--escuro);
  background: var(--branco);
  line-height: 1.6;
}

/* overflow-x apenas em html/body, nunca em seções grandes */
html, body {
  overflow-x: hidden;
}

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

a {
  transition: color var(--trans);
}

/* ===== UTILITÁRIOS ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.etiqueta-secao {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amarelo-escuro);
  background: var(--amarelo-bg);
  border: 1px solid rgba(201, 168, 76, 0.2);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.etiqueta-secao.claro {
  color: var(--amarelo);
  background: rgba(201, 168, 76, 0.12);
  border-color: rgba(201, 168, 76, 0.25);
}

.cabecalho-secao {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.cabecalho-secao h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--preto);
  margin-bottom: 16px;
  line-height: 1.2;
}

.cabecalho-secao p {
  color: var(--cinza);
  font-size: 1rem;
}

/* ===== ANIMAÇÕES ENTRADA ===== */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visivel {
  opacity: 1;
  transform: translateY(0);
}

.produto-card:nth-child(1) { transition-delay: 0.05s; }
.produto-card:nth-child(2) { transition-delay: 0.15s; }
.produto-card:nth-child(3) { transition-delay: 0.25s; }

.diferencial-item:nth-child(1) { transition-delay: 0.05s; }
.diferencial-item:nth-child(2) { transition-delay: 0.12s; }
.diferencial-item:nth-child(3) { transition-delay: 0.19s; }
.diferencial-item:nth-child(4) { transition-delay: 0.26s; }

.depoimento-card:nth-child(1), .depoimento-card:nth-child(4) { transition-delay: 0.05s; }
.depoimento-card:nth-child(2), .depoimento-card:nth-child(5) { transition-delay: 0.15s; }
.depoimento-card:nth-child(3), .depoimento-card:nth-child(6) { transition-delay: 0.25s; }

/* ===== HEADER ===== */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-h);
  background: rgba(10, 10, 10, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 1000;
  border-bottom: 1px solid rgba(201, 168, 76, 0.12);
  transition: box-shadow var(--trans);
}

#header.rolado {
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.4);
}

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

.logo {
  text-decoration: none;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.logo-img {
  height: 52px;
  width: auto;
  display: block;
  transition: transform var(--trans), filter var(--trans);
  filter: drop-shadow(0 2px 6px rgba(201, 168, 76, 0.20));
}

.logo:hover .logo-img {
  transform: scale(1.04);
  filter: drop-shadow(0 4px 12px rgba(201, 168, 76, 0.35));
}

/* logo texto fallback (usado só no footer pequeno) */
.logo-texto {
  font-weight: 900;
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  color: var(--branco);
}

.logo-destaque {
  color: var(--amarelo);
}

/* Logo no footer */
.footer-logo-img {
  height: 64px;
  width: auto;
  display: block;
  margin-bottom: 8px;
  filter: drop-shadow(0 2px 8px rgba(201, 168, 76, 0.25));
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}

.desktop-nav a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 7px 14px;
  border-radius: 8px;
  transition: all var(--trans);
}

.desktop-nav a:hover,
.desktop-nav a.ativo {
  color: var(--amarelo);
  background: rgba(201, 168, 76, 0.10);
}

.header-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--amarelo);
  color: var(--preto);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 9px 18px;
  border-radius: 9px;
  flex-shrink: 0;
  white-space: nowrap;
  transition: background var(--trans), transform var(--trans), box-shadow var(--trans);
}

.header-whatsapp:hover {
  background: var(--amarelo-escuro);
  transform: translateY(-1px);
  box-shadow: var(--sombra-am);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px 4px;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--branco);
  border-radius: 2px;
  transition: all var(--trans);
}

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

/* ===== MENU MOBILE ===== */
#navMenu {
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  background: var(--preto);
  padding: 12px 24px 28px;
  display: flex;
  flex-direction: column;
  z-index: 999;
  transform: translateY(-105%);
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.3s ease;
  border-bottom: 2px solid var(--amarelo);
}

#navMenu.aberto {
  transform: translateY(0);
  opacity: 1;
}

#navMenu a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  font-size: 1rem;
  padding: 14px 16px;
  border-radius: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all var(--trans);
}

#navMenu a:hover {
  color: var(--amarelo);
  background: rgba(201, 168, 76, 0.08);
  padding-left: 24px;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(rgba(10, 10, 10, 0.80), rgba(10, 10, 10, 0.80)),
    url('https://images.unsplash.com/photo-1558769132-cb1aea458c5e?w=1920&q=80&auto=format&fit=crop') center / cover no-repeat;
  background-attachment: fixed, fixed;
  padding-top: var(--header-h);
}

.hero-decoracao {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.anel {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.10);
  top: 50%;
  right: -80px;
  transform: translateY(-50%);
}

.anel-1 { width: 700px; height: 700px; }
.anel-2 { width: 480px; height: 480px; border-color: rgba(201, 168, 76, 0.14); }
.anel-3 {
  width: 260px;
  height: 260px;
  background: rgba(201, 168, 76, 0.04);
  border-color: rgba(201, 168, 76, 0.18);
}

.faixa-diagonal {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 75% 40%, rgba(201, 168, 76, 0.10) 0%, transparent 55%),
    radial-gradient(ellipse at 15% 80%, rgba(201, 168, 76, 0.05) 0%, transparent 45%);
}

.hero-conteudo {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 80px clamp(24px, 8vw, 120px) 80px 24px;
  max-width: 680px;
  margin-left: clamp(24px, 6vw, 80px);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(201, 168, 76, 0.10);
  border: 1px solid rgba(201, 168, 76, 0.22);
  color: var(--amarelo);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 28px;
}

.hero-badge .fa-circle {
  font-size: 0.45rem;
  animation: piscar 2s infinite;
}

@keyframes piscar {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(1.6); }
}

.hero h1 {
  margin-bottom: 20px;
  line-height: 1;
}

.hero-logo {
  width: clamp(260px, 38vw, 480px);
  height: auto;
  display: block;
  filter: drop-shadow(0 4px 24px rgba(201, 168, 76, 0.35));
}

.hero h2 {
  font-size: clamp(1rem, 2.2vw, 1.4rem);
  font-weight: 400;
  font-style: italic;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 18px;
}

.hero p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.5);
  max-width: 440px;
  margin-bottom: 40px;
  line-height: 1.8;
}

.br-desktop { display: block; }

.hero-botoes {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn-primario {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--amarelo);
  color: var(--preto);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 32px;
  border-radius: 10px;
  transition: background var(--trans), transform var(--trans), box-shadow var(--trans);
}

.btn-primario:hover {
  background: var(--amarelo-escuro);
  transform: translateY(-2px);
  box-shadow: var(--sombra-am);
}

.btn-contorno {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--branco);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  transition: all var(--trans);
}

.btn-contorno:hover {
  background: var(--amarelo);
  color: var(--preto);
  border-color: var(--amarelo);
}

/* Hero lateral decorativa */
.hero-lateral {
  position: absolute;
  right: clamp(60px, 12vw, 200px);
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  pointer-events: none;
}

.hero-icone-box {
  width: clamp(120px, 15vw, 220px);
  height: clamp(120px, 15vw, 220px);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  background: rgba(201, 168, 76, 0.10);
  border: 1px solid rgba(201, 168, 76, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(3rem, 6vw, 6rem);
  color: var(--amarelo);
  animation: flutuante 4s ease-in-out infinite;
}

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

/* ===== SOBRE ===== */
.sobre {
  padding: 100px 0;
  background: var(--branco);
}

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

.sobre-card-principal {
  background:
    linear-gradient(rgba(10, 10, 10, 0.78), rgba(10, 10, 10, 0.78)),
    url('https://images.unsplash.com/photo-1567401893414-76b7b1e5a7a5?w=800&q=80&auto=format&fit=crop') center / cover no-repeat;
  border-radius: var(--raio-lg);
  padding: 60px 40px;
  text-align: center;
  margin-bottom: 20px;
  border: 1px solid rgba(201, 168, 76, 0.20);
}

.sobre-card-principal i {
  font-size: 4rem;
  color: var(--amarelo);
  margin-bottom: 16px;
  display: block;
}

.sobre-card-principal p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  font-weight: 500;
}

.sobre-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 16px;
}

.stat {
  background: var(--cinza-claro);
  border-radius: var(--raio);
  padding: 18px 10px;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.stat strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--preto);
  margin-bottom: 4px;
}

.stat span {
  font-size: 0.7rem;
  color: var(--cinza);
}

.sobre-selo {
  background: var(--amarelo);
  border-radius: var(--raio);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--preto);
}

.sobre-texto .etiqueta-secao {
  margin-bottom: 14px;
}

.sobre-texto h2 {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  color: var(--preto);
  margin-bottom: 20px;
  line-height: 1.3;
}

.sobre-texto p {
  color: var(--cinza);
  font-size: 0.93rem;
  margin-bottom: 16px;
  line-height: 1.85;
}

.mvv-lista {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 32px;
}

.mvv-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--cinza-claro);
  padding: 18px 20px;
  border-radius: var(--raio);
  border-left: 3px solid var(--amarelo);
}

.mvv-icone {
  width: 40px;
  height: 40px;
  background: var(--amarelo);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mvv-icone i {
  color: var(--preto);
  font-size: 0.95rem;
}

.mvv-item h3 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--preto);
  margin-bottom: 4px;
}

.mvv-item p {
  font-size: 0.82rem;
  color: var(--cinza);
  margin: 0;
  line-height: 1.6;
}

/* ===== PRODUTOS ===== */
.produtos {
  padding: 100px 0;
  background:
    linear-gradient(rgba(248, 248, 248, 0.94), rgba(248, 248, 248, 0.94)),
    url('https://images.unsplash.com/photo-1489987707025-afc232f7ea0f?w=1920&q=80&auto=format&fit=crop') center / cover no-repeat;
  background-attachment: fixed, fixed;
}

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

.produto-card {
  background: var(--branco);
  border-radius: var(--raio-lg);
  padding: 40px 32px;
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: transform var(--trans), box-shadow var(--trans);
}

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

.produto-card.destaque {
  background: var(--preto);
  border-color: rgba(201, 168, 76, 0.3);
  transform: scale(1.03);
}

.produto-card.destaque:hover {
  transform: scale(1.03) translateY(-6px);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.3);
}

.produto-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--amarelo);
  color: var(--preto);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 50px;
  white-space: nowrap;
}

.produto-icone {
  width: 68px;
  height: 68px;
  border-radius: var(--raio);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  background: rgba(201, 168, 76, 0.10);
  border: 1px solid rgba(201, 168, 76, 0.18);
}

.produto-icone i {
  font-size: 1.7rem;
  color: var(--amarelo-escuro);
}

.produto-card.destaque .produto-icone i {
  color: var(--amarelo);
}

.produto-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--preto);
}

.produto-card.destaque h3 {
  color: var(--branco);
}

.produto-card > p {
  font-size: 0.88rem;
  color: var(--cinza);
  margin-bottom: 20px;
  line-height: 1.75;
}

.produto-card.destaque > p {
  color: rgba(255, 255, 255, 0.60);
}

.produto-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.produto-card ul li {
  font-size: 0.84rem;
  color: var(--cinza);
  padding-left: 20px;
  position: relative;
}

.produto-card ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--amarelo-escuro);
  font-weight: 700;
}

.produto-card.destaque ul li {
  color: rgba(255, 255, 255, 0.65);
}

.produto-card.destaque ul li::before {
  color: var(--amarelo);
}

/* ===== DIFERENCIAIS ===== */
.diferenciais {
  padding: 80px 0;
  background:
    linear-gradient(rgba(10, 10, 10, 0.86), rgba(10, 10, 10, 0.86)),
    url('https://images.unsplash.com/photo-1441984904996-e0b6ba687e04?w=1920&q=80&auto=format&fit=crop') center / cover no-repeat;
  background-attachment: fixed, fixed;
}

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

.diferencial-item {
  text-align: center;
  padding: 36px 20px;
  border: 1px solid rgba(201, 168, 76, 0.10);
  border-radius: var(--raio-lg);
  transition: border-color var(--trans), background var(--trans);
}

.diferencial-item:hover {
  border-color: rgba(201, 168, 76, 0.28);
  background: rgba(201, 168, 76, 0.04);
}

.diferencial-item i {
  font-size: 2rem;
  color: var(--amarelo);
  margin-bottom: 16px;
  display: block;
}

.diferencial-item h3 {
  font-size: 0.95rem;
  color: var(--branco);
  margin-bottom: 8px;
}

.diferencial-item p {
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.50);
  line-height: 1.75;
}

/* ===== DEPOIMENTOS ===== */
.depoimentos {
  padding: 100px 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.95)),
    url('https://images.unsplash.com/photo-1607082348824-0a96f2a4b9da?w=1920&q=80&auto=format&fit=crop') center / cover no-repeat;
  background-attachment: fixed, fixed;
}

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

.depoimento-card {
  background: var(--cinza-claro);
  border-radius: var(--raio-lg);
  padding: 32px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: box-shadow var(--trans), transform var(--trans);
}

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

.estrelas {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
  color: var(--amarelo);
  font-size: 0.85rem;
}

.depoimento-card p {
  color: var(--escuro-meio);
  font-size: 0.88rem;
  line-height: 1.85;
  margin-bottom: 20px;
  font-style: italic;
}

.depoimento-autor {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--preto);
  color: var(--amarelo);
  font-size: 0.78rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.depoimento-autor strong {
  display: block;
  font-size: 0.88rem;
  color: var(--preto);
}

.depoimento-autor span {
  font-size: 0.75rem;
  color: var(--cinza);
}

/* ===== CONTATO ===== */
.contato {
  padding: 100px 0;
  background:
    linear-gradient(rgba(10, 10, 10, 0.88), rgba(10, 10, 10, 0.88)),
    url('https://images.unsplash.com/photo-1445205170230-053b83016050?w=1920&q=80&auto=format&fit=crop') center / cover no-repeat;
  background-attachment: fixed, fixed;
}

.contato .cabecalho-secao h2 {
  color: var(--branco);
}

.contato-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.contato-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--raio-lg);
  padding: 32px;
  transition: background var(--trans), border-color var(--trans);
}

.contato-card:hover {
  background: rgba(201, 168, 76, 0.05);
  border-color: rgba(201, 168, 76, 0.18);
}

.contato-icone {
  width: 50px;
  height: 50px;
  background: rgba(201, 168, 76, 0.10);
  border-radius: var(--raio);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.contato-icone i {
  font-size: 1.25rem;
  color: var(--amarelo);
}

.contato-card h3 {
  font-size: 0.78rem;
  color: var(--cinza-medio);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.contato-card p {
  font-size: 0.93rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.75;
}

.contato-card a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
}

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

.contato-cta {
  background: rgba(201, 168, 76, 0.06);
  border: 1px solid rgba(201, 168, 76, 0.14);
  border-radius: var(--raio-lg);
  padding: 52px 40px;
  text-align: center;
}

.contato-cta h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  color: var(--branco);
  margin-bottom: 12px;
}

.contato-cta p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.95rem;
  margin-bottom: 32px;
}

.cta-botoes {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: var(--branco);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 10px;
  transition: background var(--trans), transform var(--trans);
}

.btn-whatsapp:hover {
  background: #20bd5a;
  transform: translateY(-2px);
}

.btn-instagram {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--branco);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.20);
  transition: all var(--trans);
}

.btn-instagram:hover {
  background: var(--amarelo);
  color: var(--preto);
  border-color: var(--amarelo);
}

/* ===== FOOTER ===== */
.footer {
  background: #050505;
  padding: 56px 0 24px;
  border-top: 1px solid rgba(201, 168, 76, 0.10);
}

.footer-conteudo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 28px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 24px;
}

.footer-marca .logo-texto {
  font-size: 1.35rem;
  display: block;
  margin-bottom: 6px;
}

.footer-marca p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
  font-style: italic;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.footer-links a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.875rem;
  padding: 6px 12px;
  border-radius: 6px;
  transition: all var(--trans);
}

.footer-links a:hover {
  color: var(--amarelo);
  background: rgba(201, 168, 76, 0.08);
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  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.65);
  text-decoration: none;
  font-size: 1.05rem;
  transition: all var(--trans);
}

.footer-social a:hover {
  background: var(--amarelo);
  color: var(--preto);
  border-color: var(--amarelo);
}

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

.footer-base p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.28);
}

/* ===== WHATSAPP FLUTUANTE ===== */
.whatsapp-flutuante {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--branco);
  font-size: 1.6rem;
  text-decoration: none;
  z-index: 900;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  /* sem animações chamativas: apenas hover sutil */
  transition: transform var(--trans), box-shadow var(--trans);
}

.whatsapp-flutuante:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
}

/* ===== RESPONSIVIDADE — 320px → 4K ===== */

/* Desativar parallax em mobile/tablet (bug iOS/Android) */
@media (max-width: 1023px) {
  .hero,
  .produtos,
  .diferenciais,
  .depoimentos,
  .contato {
    background-attachment: scroll, scroll;
  }
}

/* ── 4K / Ultrawide ≥1800px ── */
@media (min-width: 1800px) {
  .container { max-width: 1440px; }
  .hero-conteudo { margin-left: 140px; }
  .hero-logo { width: 520px; }
}

/* ── Desktop grande 1400–1799px ── */
@media (min-width: 1400px) and (max-width: 1799px) {
  .hero-conteudo { margin-left: 80px; }
}

/* ── Laptop 1100–1399px ── */
@media (max-width: 1399px) and (min-width: 1101px) {
  .sobre-grid { gap: 48px; }
}

/* ── Tablet grande 901–1100px ── */
@media (max-width: 1100px) and (min-width: 901px) {
  .diferenciais-grid { grid-template-columns: repeat(2, 1fr); }
  .sobre-grid { gap: 36px; }
  .hero-logo { width: clamp(220px, 32vw, 400px); }
}

/* ── Tablet 601–900px ── */
@media (max-width: 900px) {

  /* Header */
  .desktop-nav,
  .header-whatsapp { display: none; }
  .menu-toggle { display: flex; }

  /* Hero — centralizado no tablet */
  .hero-lateral { display: none; }
  .hero-conteudo {
    margin-left: 0;
    margin-right: 0;
    padding: 80px 40px 72px;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero-logo { width: clamp(220px, 48vw, 380px); }
  .hero h2 { max-width: 100%; }
  .hero p { max-width: 480px; text-align: center; }
  .hero-botoes { justify-content: center; }
  .hero-decoracao { opacity: 0.5; }

  /* Sobre */
  .sobre-grid { grid-template-columns: 1fr; gap: 40px; }
  .sobre-visual { max-width: 540px; margin: 0 auto; }
  .sobre-stats { grid-template-columns: repeat(3, 1fr); }

  /* Produtos — 2 colunas no tablet */
  .produtos-grid { grid-template-columns: repeat(2, 1fr); }
  .produto-card.destaque { transform: none; }
  .produto-card.destaque:hover { transform: translateY(-6px); }

  /* Diferenciais */
  .diferenciais-grid { grid-template-columns: repeat(2, 1fr); }

  /* Depoimentos */
  .depoimentos-grid { grid-template-columns: repeat(2, 1fr); }

  /* Contato */
  .contato-grid { grid-template-columns: repeat(2, 1fr); }

  /* Footer */
  .footer-conteudo {
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: 24px;
  }
  .footer-links { justify-content: center; }
  .footer-social { justify-content: center; }
  .footer-logo-img { margin: 0 auto; }
}

/* ── Tablet pequeno / Mobile grande 481–600px ── */
@media (max-width: 600px) {
  :root { --header-h: 64px; }

  /* Header */
  .logo-img { height: 44px; }
  .header-container { padding: 0 18px; }

  /* Hero */
  .hero-conteudo {
    padding: 56px 20px 60px;
    max-width: 100%;
  }
  .hero-logo { width: clamp(200px, 65vw, 320px); }
  .hero h2 { font-size: 0.95rem; }
  .hero p { font-size: 0.88rem; max-width: 100%; }
  .hero-badge { font-size: 0.7rem; padding: 7px 14px; }
  .hero-botoes { flex-direction: column; width: 100%; gap: 12px; }
  .hero-botoes .btn-primario,
  .hero-botoes .btn-contorno { justify-content: center; width: 100%; }
  .br-desktop { display: none; }

  /* Seções — padding geral */
  .sobre,
  .produtos,
  .galeria,
  .depoimentos,
  .contato { padding: 64px 0; }
  .diferenciais { padding: 56px 0; }

  /* Cabeçalho seções */
  .cabecalho-secao { margin-bottom: 36px; }
  .cabecalho-secao h2 { font-size: 1.55rem; }

  /* Sobre */
  .sobre-grid { gap: 28px; }
  .sobre-card-principal { padding: 40px 24px; }
  .sobre-stats { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .stat { padding: 14px 8px; }
  .stat strong { font-size: 0.82rem; }
  .stat span { font-size: 0.65rem; }
  .sobre-texto h2 { font-size: 1.4rem; }
  .mvv-item { flex-direction: column; gap: 10px; }
  .mvv-lista { gap: 10px; margin-top: 20px; }

  /* Produtos — 1 coluna no mobile */
  .produtos-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  /* Diferenciais — 2 colunas */
  .diferenciais-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .diferencial-item { padding: 24px 12px; }
  .diferencial-item i { font-size: 1.6rem; }
  .diferencial-item h3 { font-size: 0.88rem; }
  .diferencial-item p { font-size: 0.78rem; }

  /* Depoimentos — 1 coluna */
  .depoimentos-grid { grid-template-columns: 1fr; }

  /* Contato */
  .contato-grid { grid-template-columns: 1fr; }
  .contato-cta { padding: 28px 20px; }
  .cta-botoes { flex-direction: column; align-items: stretch; }
  .btn-whatsapp,
  .btn-instagram { justify-content: center; }

  /* Footer */
  .footer { padding: 44px 0 20px; }
  .footer-logo-img { height: 52px; }
  .footer-marca p { font-size: 0.78rem; }
  .footer-base p { font-size: 0.72rem; }

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

  /* Lightbox */
  .lightbox-conteudo { padding: 56px 12px 44px; }
  .lightbox-prev { left: 6px; }
  .lightbox-next { right: 6px; }
  .lightbox-nav { width: 38px; height: 38px; font-size: 0.85rem; }
  .lightbox-fechar { top: 12px; right: 12px; width: 38px; height: 38px; }
}

/* ── Mobile padrão 361–480px ── */
@media (max-width: 480px) {
  .hero-logo { width: clamp(180px, 72vw, 300px); }
  .sobre-stats { grid-template-columns: repeat(3, 1fr); }
  .contato-card { padding: 24px 20px; }
  .galeria { padding: 56px 0 48px; }
}

/* ── Mobile pequeno ≤360px ── */
@media (max-width: 360px) {
  :root { --header-h: 60px; }

  .header-container { padding: 0 14px; }
  .logo-img { height: 38px; }

  .hero-logo { width: clamp(160px, 80vw, 260px); }
  .hero-badge { font-size: 0.62rem; padding: 5px 11px; gap: 6px; }
  .hero h2 { font-size: 0.88rem; }
  .hero p { font-size: 0.82rem; }

  .cabecalho-secao h2 { font-size: 1.35rem; }

  .sobre-stats { grid-template-columns: 1fr 1fr; }
  .diferenciais-grid { grid-template-columns: 1fr; }

  .btn-primario,
  .btn-contorno,
  .btn-whatsapp,
  .btn-instagram { padding: 12px 18px; font-size: 0.88rem; }
}

/* ============================================================
   EFEITOS — Estilo Mix
   ============================================================ */

/* ===== Barra de progresso de scroll ===== */
#progresso-scroll {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--amarelo-escuro), var(--amarelo), #e0c070);
  z-index: 2001;
  border-radius: 0 3px 3px 0;
  transition: width 0.08s linear;
  box-shadow: 0 0 8px rgba(201, 168, 76, 0.6);
}

/* ===== Hero — animações de entrada ===== */
@keyframes subirFade {
  from { opacity: 0; transform: translateY(44px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes aparecerLateral {
  from { opacity: 0; transform: translateY(-50%) translateX(60px) scale(0.88); }
  to   { opacity: 1; transform: translateY(-50%) translateX(0)    scale(1);    }
}

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

/* Elementos do hero invisíveis até o loader terminar */
.hero-badge,
.hero h1,
.hero h2,
.hero p,
.hero-botoes,
.hero-lateral,
.hero-decoracao {
  opacity: 0;
}

/* Animações só disparam após body receber .site-pronto */
.site-pronto .hero-badge     { animation: subirFade 0.7s ease both; animation-delay: 0.10s; }
.site-pronto .hero h1        { animation: subirFade 0.9s ease both; animation-delay: 0.28s; }
.site-pronto .hero h2        { animation: subirFade 0.7s ease both; animation-delay: 0.55s; }
.site-pronto .hero p         { animation: subirFade 0.7s ease both; animation-delay: 0.70s; }
.site-pronto .hero-botoes    { animation: subirFade 0.7s ease both; animation-delay: 0.85s; }
.site-pronto .hero-lateral   { animation: aparecerLateral 1.1s cubic-bezier(0.22,1,0.36,1) both; animation-delay: 0.45s; }
.site-pronto .hero-decoracao { animation: aparecerDecoracao 1.4s ease both; animation-delay: 0.05s; }

/* ===== Hero badge — shimmer sweep ===== */
.hero-badge {
  position: relative;
  overflow: hidden;
}

.hero-badge::after {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  width: 55%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.20), transparent);
  animation: shimmerSweep 3.8s ease infinite;
  animation-delay: 1.8s;
}

@keyframes shimmerSweep {
  0%   { left: -120%; }
  100% { left: 210%; }
}

/* ===== Botão primário — shine sweep + overflow ===== */
.btn-primario {
  position: relative;
  overflow: hidden;
}

.btn-primario::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 55%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.24), transparent);
  transition: left 0.55s ease;
}

.btn-primario:hover::before {
  left: 160%;
}

/* ===== Títulos das seções — underline animado ===== */
.cabecalho-secao h2 {
  position: relative;
  padding-bottom: 20px;
}

.cabecalho-secao h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--amarelo-escuro), var(--amarelo));
  border-radius: 3px;
  transition: width 0.85s cubic-bezier(0.4, 0, 0.2, 1);
}

.cabecalho-secao h2.linha-ativa::after {
  width: 64px;
}

/* ===== Ícones dos diferenciais — scale + rotate no hover ===== */
.diferencial-item i {
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.diferencial-item:hover i {
  transform: scale(1.28) rotate(8deg);
}

/* ===== Ícone do produto — rotate no hover ===== */
.produto-icone i {
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.produto-card:hover .produto-icone i {
  transform: scale(1.22) rotate(-10deg);
}

/* ===== Produto destaque — glow permanente + intensifica no hover ===== */
.produto-card.destaque {
  box-shadow:
    0 0 0 1px rgba(201, 168, 76, 0.22),
    0 8px 40px rgba(0, 0, 0, 0.28);
}

.produto-card.destaque:hover {
  box-shadow:
    0 0 0 1px rgba(201, 168, 76, 0.50),
    0 12px 48px rgba(0, 0, 0, 0.40),
    0 0 36px rgba(201, 168, 76, 0.12);
}

/* ===== MVV itens — deslizar direita no hover ===== */
.mvv-item {
  transition: transform 0.30s ease, box-shadow 0.30s ease;
}

.mvv-item:hover {
  transform: translateX(7px);
  box-shadow: -3px 0 0 var(--amarelo), var(--sombra);
}

/* ===== Avatar do depoimento — glow no hover ===== */
.avatar {
  transition: transform var(--trans), box-shadow var(--trans);
}

.depoimento-card:hover .avatar {
  transform: scale(1.12);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.40);
}

/* ===== Ícone do contato — bounce no hover ===== */
.contato-icone i {
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.contato-card:hover .contato-icone i {
  transform: scale(1.25) translateY(-3px);
}

/* ===== Stat pop — quando o contador termina ===== */
@keyframes statPop {
  0%   { transform: scale(1);    }
  45%  { transform: scale(1.16); }
  100% { transform: scale(1);    }
}

.stat.animou strong {
  animation: statPop 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ===== Ripple nos botões ===== */
.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
  pointer-events: none;
  animation: rippleAnim 0.65s ease-out forwards;
}

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

/* ===== Etiqueta de seção — entrada suave ===== */
.etiqueta-secao {
  transition: transform var(--trans), box-shadow var(--trans);
}

.etiqueta-secao:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(201, 168, 76, 0.18);
}

/* ===== Sobre selo — pulso suave ===== */
@keyframes pulsoSelo {
  0%, 100% { transform: scale(1);    }
  50%       { transform: scale(1.02);}
}

.sobre-selo {
  animation: pulsoSelo 3.5s ease-in-out infinite;
}

/* ===== GALERIA / CARROSSEL ===== */
.galeria {
  padding: 100px 0 80px;
  background: var(--cinza-claro);
}

.galeria-swiper {
  width: 100%;
  padding: 16px 0 56px !important;
}

.galeria-item {
  border-radius: var(--raio-lg);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: #e0e0e0;
  position: relative;
  box-shadow: var(--sombra);
  transition: transform var(--trans), box-shadow var(--trans);
}

.galeria-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--sombra-lg);
}

.galeria-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.galeria-item:hover img {
  transform: scale(1.05);
}

/* Setas de navegação */
.galeria-prev,
.galeria-next {
  width: 46px !important;
  height: 46px !important;
  background: var(--amarelo) !important;
  border-radius: 50% !important;
  color: var(--preto) !important;
  box-shadow: 0 4px 16px rgba(201, 168, 76, 0.40) !important;
  transition: background var(--trans), transform var(--trans) !important;
}

.galeria-prev:hover,
.galeria-next:hover {
  background: var(--amarelo-escuro) !important;
  transform: scale(1.08) !important;
}

.galeria-prev::after,
.galeria-next::after {
  font-size: 1rem !important;
  font-weight: 800 !important;
  color: var(--preto) !important;
}

/* Paginação */
.galeria-paginacao .swiper-pagination-bullet {
  background: var(--amarelo-escuro) !important;
  opacity: 0.35 !important;
  width: 8px !important;
  height: 8px !important;
  transition: all var(--trans) !important;
}

.galeria-paginacao .swiper-pagination-bullet-active {
  opacity: 1 !important;
  width: 24px !important;
  border-radius: 4px !important;
}

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 8000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox.aberto {
  opacity: 1;
  visibility: visible;
}

.lightbox-conteudo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 72px 80px;
}

.lightbox-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: var(--raio);
  box-shadow: 0 8px 60px rgba(0, 0, 0, 0.8);
  transform: scale(0.92);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.25s ease;
  opacity: 0;
}

.lightbox.aberto .lightbox-img {
  transform: scale(1);
  opacity: 1;
}

/* Botão fechar */
.lightbox-fechar {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.20);
  color: var(--branco);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--trans), transform var(--trans);
  z-index: 1;
}

.lightbox-fechar:hover {
  background: var(--amarelo);
  color: var(--preto);
  border-color: var(--amarelo);
  transform: scale(1.1) rotate(90deg);
}

/* Setas de navegação */
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--branco);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--trans);
  z-index: 1;
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

.lightbox-nav:hover {
  background: var(--amarelo);
  color: var(--preto);
  border-color: var(--amarelo);
  transform: translateY(-50%) scale(1.10);
}

/* Contador */
.lightbox-contador {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.55);
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  padding: 6px 16px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  white-space: nowrap;
}

/* Cursor pointer nas imagens da galeria */
.galeria-item {
  cursor: pointer;
}

/* Travar scroll do body quando lightbox aberto */
body.lightbox-aberto {
  overflow: hidden;
}

@media (max-width: 600px) {
  .lightbox-conteudo {
    padding: 64px 16px 48px;
  }

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

  .lightbox-nav {
    width: 42px;
    height: 42px;
    font-size: 0.95rem;
  }
}

/* ===== LOADER ===== */
#loader {
  position: fixed;
  inset: 0;
  background: #0A0A0A;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}

#loader.saindo {
  opacity: 0;
  visibility: hidden;
}

.loader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.loader-logo {
  width: clamp(200px, 42vw, 300px);
  height: auto;
  animation: loaderPulso 2s ease-in-out infinite;
  filter: drop-shadow(0 0 20px rgba(201, 168, 76, 0.40));
}

@keyframes loaderPulso {
  0%, 100% { transform: scale(1);     filter: drop-shadow(0 0 16px rgba(201, 168, 76, 0.35)); }
  50%       { transform: scale(1.05); filter: drop-shadow(0 0 32px rgba(201, 168, 76, 0.60)); }
}

.loader-barra-container {
  width: clamp(200px, 42vw, 320px);
  height: 3px;
  background: rgba(201, 168, 76, 0.15);
  border-radius: 3px;
  overflow: hidden;
}

.loader-barra {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--amarelo-escuro), var(--amarelo), #e0c070);
  border-radius: 3px;
  transition: width 2.8s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 8px rgba(201, 168, 76, 0.55);
}

.loader-texto {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

@keyframes pontos {
  0%   { content: '';    }
  25%  { content: '.';   }
  50%  { content: '..';  }
  75%  { content: '...'; }
  100% { content: '';    }
}

.loader-dots::after {
  content: '';
  animation: pontos 1.4s steps(1) infinite;
}

/* ===== Desativar animações de entrada para quem prefere menos movimento ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
