/* =============================================
   ELITE DISTRIBUIDORA — style.css (v2 — ajustes finos)
   ============================================= */

:root {
  --gold: #C9A84C;
  --gold-light: #E4C97A;
  --gold-dark: #8B6914;
  --gold-pale: #F5E6B8;
  --black: #0A0A0A;
  --dark: #111111;
  --dark2: #1A1A1A;
  --dark3: #222222;
  --dark4: #2A2A2A;
  --gray: #888888;
  --light-gray: #CCCCCC;
  --white: #FFFFFF;
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

html {
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  max-width: 100vw;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Safety: imagens nunca extrapolam container */
img, svg, video {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Safety: prevent any element from forcing horizontal scroll */
*, *::before, *::after {
  max-width: 100%;
}

/* Exceção: elementos posicionados absolutamente podem extrapolar (background decorations) */
.hero-bg, .cta-bg, .cta-border, .hero-particles, .particle,
.scroll-line, nav, .mobile-menu, .whatsapp-float {
  max-width: none;
}

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }

/* ---- SELECTION ---- */
::selection { background: var(--gold); color: var(--black); }

/* ---- UTILITIES ---- */
.serif { font-family: 'Cormorant Garamond', serif; }
.gold { color: var(--gold); }
.gold-light { color: var(--gold-light); }

.gold-line {
  width: 60px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 auto 2rem;
}
.gold-line-left {
  width: 60px; height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin-bottom: 1.5rem;
}

/* ---- NAVBAR ---- */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1rem 2rem;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  transition: var(--transition);
}
nav.scrolled {
  padding: 0.6rem 2rem;
  background: rgba(10,10,10,0.97);
  border-bottom-color: rgba(201,168,76,0.3);
}
.nav-logo img { height: 52px; transition: var(--transition); }
nav.scrolled .nav-logo img { height: 40px; }
.nav-links { display: flex; gap: 2.2rem; list-style: none; }
.nav-links a {
  color: var(--light-gray);
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transition: transform 0.3s ease;
  transform-origin: center;
}
.nav-links a:hover { color: var(--gold-light); }
.nav-links a:hover::after { transform: scaleX(1); }

/* NAV CTA — FIX HOVER: texto sempre visível */
.nav-cta {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold) !important;
  padding: 0.5rem 1.4rem;
  border-radius: 2px;
  transition: var(--transition);
}
.nav-cta:hover {
  background: var(--gold) !important;
  color: var(--black) !important; /* texto preto sobre fundo ouro — sempre legível */
  border-color: var(--gold) !important;
}
.nav-cta::after { display: none !important; }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px;
}
.hamburger span {
  width: 26px; height: 2px;
  background: var(--gold); border-radius: 1px;
  transition: var(--transition);
}

.mobile-menu {
  display: none;
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: var(--black);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--white); text-decoration: none;
  font-size: 1.5rem; font-family: 'Cormorant Garamond', serif;
  font-weight: 300; letter-spacing: 3px; text-transform: uppercase;
  transition: var(--transition);
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-close {
  position: absolute; top: 1.5rem; right: 2rem;
  background: none; border: none; color: var(--gold);
  font-size: 2rem; cursor: pointer;
}

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 8rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(201,168,76,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(139,105,20,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 80% 20%, rgba(201,168,76,0.05) 0%, transparent 60%);
}
.hero-particles {
  position: absolute; inset: 0; overflow: hidden; pointer-events: none;
}
.particle {
  position: absolute;
  width: 1px; height: 1px;
  background: var(--gold);
  border-radius: 50%;
  animation: float linear infinite;
  opacity: 0;
}
@keyframes float {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  10% { opacity: 0.6; }
  90% { opacity: 0.3; }
  100% { transform: translateY(-20px) scale(1); opacity: 0; }
}
.hero-logo {
  width: 180px; margin-bottom: 2rem;
  animation: fadeInDown 1s ease 0.2s both;
  filter: drop-shadow(0 0 30px rgba(201,168,76,0.3));
}
.hero-badge {
  display: inline-block;
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold);
  font-size: 0.65rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  padding: 0.4rem 1.2rem;
  margin-bottom: 1.5rem;
  animation: fadeInDown 1s ease 0.4s both;
}
.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -1px;
  margin-bottom: 0.3rem;
  animation: fadeInDown 1s ease 0.5s both;
  word-wrap: break-word;
  hyphens: auto;
}
.hero h1 strong {
  display: block;
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold-pale) 0%, var(--gold) 40%, var(--gold-light) 70%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: clamp(0.7rem, 1.5vw, 0.85rem);
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 2rem;
  font-weight: 300;
  animation: fadeInDown 1s ease 0.7s both;
}
.hero-desc {
  max-width: 520px;
  font-size: 1rem;
  color: var(--light-gray);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 3rem;
  animation: fadeInUp 1s ease 0.9s both;
}
.hero-buttons {
  display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center;
  animation: fadeInUp 1s ease 1.1s both;
}

/* ---- BUTTONS — FIX HOVER ---- */

/* BTN PRIMARY: texto preto, fundo dourado. */
.btn-primary {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  color: var(--black);
  padding: 1rem 2.5rem;
  border: none; cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  transition: var(--transition);
  position: relative;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-pale));
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(201,168,76,0.3);
}

/* BTN SECONDARY: borda ouro, texto ouro. */
.btn-secondary {
  background: transparent;
  border: 1px solid rgba(201,168,76,0.5);
  color: var(--gold-light);
  padding: 1rem 2.5rem;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  transition: var(--transition);
}
.btn-secondary:hover {
  background: rgba(201,168,76,0.12);
  border-color: var(--gold);
  color: var(--gold-pale);
  transform: translateY(-2px);
}

.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: var(--gray); font-size: 0.65rem; letter-spacing: 3px;
  text-transform: uppercase; animation: fadeIn 2s ease 1.5s both;
}
.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* ---- STATS BAR ---- */
.stats-bar {
  background: var(--dark2);
  border-top: 1px solid rgba(201,168,76,0.15);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  padding: 2rem;
}
.stats-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
.stat-item {
  text-align: center; padding: 1rem 2rem;
  border-right: 1px solid rgba(201,168,76,0.15);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem; font-weight: 700;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.stat-label {
  font-size: 0.65rem; letter-spacing: 2px;
  text-transform: uppercase; color: var(--gray);
  margin-top: 0.4rem;
}

/* ---- SECTIONS ---- */
section { padding: 6rem 2rem; }
.container { max-width: 1100px; margin: 0 auto; padding-left: 0; padding-right: 0; width: 100%; }
.section-tag {
  display: block;
  font-size: 0.65rem; letter-spacing: 4px;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 0.8rem;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 300; line-height: 1.1;
  margin-bottom: 1.5rem;
}
.section-title strong { font-weight: 700; color: var(--gold-light); }

/* ---- ABOUT ---- */
.about { background: var(--dark); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
.about-text p {
  color: var(--light-gray); font-size: 0.95rem;
  line-height: 1.9; margin-bottom: 1.5rem; font-weight: 300;
}
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2rem; }
.about-feat {
  display: flex; align-items: flex-start; gap: 0.8rem;
  padding: 1rem;
  background: var(--dark2);
  border: 1px solid rgba(201,168,76,0.1);
  transition: var(--transition);
}
.about-feat:hover { border-color: rgba(201,168,76,0.3); background: var(--dark3); }

/* Ícones Lucide nas features */
.about-feat-icon {
  color: var(--gold); font-size: 1rem; flex-shrink: 0; margin-top: 2px;
  display: flex; align-items: center; justify-content: center;
}
.about-feat-icon svg { width: 18px; height: 18px; stroke: var(--gold); }

.about-feat-text { font-size: 0.8rem; color: var(--light-gray); line-height: 1.5; }
.about-visual {
  position: relative; display: flex; align-items: center; justify-content: center;
}
.about-card-main {
  background: var(--dark2);
  border: 1px solid rgba(201,168,76,0.2);
  padding: 2.5rem;
  position: relative;
  max-width: 380px; width: 100%;
}
.about-card-main::before {
  content: '';
  position: absolute; top: -1px; left: 2rem; right: 2rem; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.about-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; font-style: italic; font-weight: 300;
  color: var(--gold-pale); line-height: 1.4;
  margin-bottom: 1.5rem;
}
.mvv-grid { display: flex; flex-direction: column; gap: 1.2rem; }
.mvv-item { display: flex; align-items: flex-start; gap: 0.8rem; }
.mvv-label {
  font-size: 0.6rem; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); font-weight: 700; min-width: 55px; margin-top: 3px;
}
.mvv-text { font-size: 0.82rem; color: var(--light-gray); font-weight: 300; line-height: 1.5; }

/* ---- SERVICES ---- */
.services { background: var(--black); }
.services-header { text-align: center; max-width: 600px; margin: 0 auto 4rem; }
.services-header p { color: var(--gray); font-size: 0.9rem; font-weight: 300; line-height: 1.8; }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: rgba(201,168,76,0.1);
}
.service-card {
  background: var(--dark);
  padding: 2.5rem 2rem;
  transition: var(--transition);
  position: relative; overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0); transition: transform 0.4s ease;
}
.service-card:hover { background: var(--dark2); }
.service-card:hover::before { transform: scaleX(1); }

/* Ícones dos serviços */
.service-icon {
  font-size: 2rem; margin-bottom: 1.2rem;
  color: var(--gold);
  display: flex; align-items: center;
}
.service-icon svg { width: 36px; height: 36px; stroke: var(--gold); }

.service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; font-weight: 600;
  margin-bottom: 0.8rem; color: var(--gold-pale);
}
.service-card p { font-size: 0.82rem; color: var(--gray); line-height: 1.7; font-weight: 300; }

/* ---- DIFFERENTIALS ---- */
.differentials { background: var(--dark); }
.diff-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3rem; align-items: start;
}
.diff-list { display: flex; flex-direction: column; gap: 1.5rem; }
.diff-item {
  display: flex; gap: 1.5rem; align-items: flex-start;
  padding: 1.5rem;
  background: var(--dark2);
  border: 1px solid rgba(201,168,76,0.1);
  transition: var(--transition);
  cursor: default;
}
.diff-item:hover { border-color: rgba(201,168,76,0.35); transform: translateX(6px); }
.diff-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem; font-weight: 700; line-height: 1;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; flex-shrink: 0;
}
.diff-content h4 {
  font-size: 0.85rem; font-weight: 700; letter-spacing: 1px;
  margin-bottom: 0.4rem; color: var(--gold-pale);
}
.diff-content p { font-size: 0.8rem; color: var(--gray); line-height: 1.6; font-weight: 300; }

/* ---- ALCANCE (nacional) ---- */
.alcance-visual {
  background: var(--dark2);
  border: 1px solid rgba(201,168,76,0.15);
  padding: 3rem;
  display: flex; flex-direction: column; justify-content: center;
  gap: 2rem;
  position: sticky; top: 100px;
}
.alcance-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem; font-weight: 300;
  color: var(--gold-pale); line-height: 1.3;
}
.alcance-title strong { display: block; font-weight: 700; color: var(--gold); }
.alcance-items { display: flex; flex-direction: column; gap: 0.8rem; }
.alcance-item {
  display: flex; align-items: flex-start; gap: 0.8rem;
  font-size: 0.82rem; color: var(--light-gray); font-weight: 300; line-height: 1.5;
}
.alcance-item::before {
  content: '✦';
  color: var(--gold); flex-shrink: 0; font-size: 0.7rem; margin-top: 3px;
}
.coverage-values { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 0.5rem; }
.coverage-val {
  padding: 0.35rem 0.8rem;
  border: 1px solid rgba(201,168,76,0.25);
  font-size: 0.65rem; letter-spacing: 1px;
  color: var(--gold-light); text-transform: uppercase;
}

/* ---- PROCESS ---- */
.process { background: var(--black); }
.process-header { text-align: center; max-width: 600px; margin: 0 auto 4rem; }
.process-steps {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 1px; background: rgba(201,168,76,0.1);
}
.step-card {
  background: var(--dark);
  padding: 2.5rem 1.5rem;
  text-align: center;
  transition: var(--transition);
}
.step-card:hover { background: var(--dark2); }
.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem; font-weight: 700;
  background: linear-gradient(135deg, rgba(201,168,76,0.3), rgba(201,168,76,0.6));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; line-height: 1; margin-bottom: 1rem;
  transition: var(--transition);
}
.step-card:hover .step-num {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text; background-clip: text;
}
.step-title {
  font-size: 0.8rem; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  color: var(--gold-pale); margin-bottom: 0.8rem;
}
.step-desc { font-size: 0.78rem; color: var(--gray); line-height: 1.6; font-weight: 300; }

/* ---- TRUST ---- */
.trust { background: var(--dark); }
.trust-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
}
.trust-card {
  text-align: center; padding: 2.5rem 2rem;
  background: var(--dark2);
  border: 1px solid rgba(201,168,76,0.1);
  transition: var(--transition);
}
.trust-card:hover { border-color: rgba(201,168,76,0.3); transform: translateY(-4px); }

/* Ícones dos trust cards */
.trust-icon {
  font-size: 2.5rem; margin-bottom: 1rem;
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
}
.trust-icon svg { width: 40px; height: 40px; stroke: var(--gold); }

.trust-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; margin-bottom: 0.8rem; color: var(--gold-pale);
}
.trust-card p { font-size: 0.82rem; color: var(--gray); line-height: 1.7; font-weight: 300; }

/* ---- CTA ---- */
.cta-section {
  background: var(--black);
  position: relative; overflow: hidden;
  padding: 7rem 2rem;
  text-align: center;
}
.cta-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 70% at 50% 50%, rgba(201,168,76,0.06) 0%, transparent 70%);
}
.cta-border {
  position: absolute;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 90%; max-width: 900px; height: 80%;
  border: 1px solid rgba(201,168,76,0.1);
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; }
.cta-section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300; margin-bottom: 1rem; line-height: 1.1;
}
.cta-section h2 strong { font-weight: 700; color: var(--gold-light); display: block; }
.cta-section p {
  color: var(--gray); font-size: 0.9rem;
  max-width: 500px; margin: 0 auto 3rem;
  font-weight: 300; line-height: 1.8;
}

/* ---- CONTACT ---- */
.contact { background: var(--dark); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem;
}
.contact-info { display: flex; flex-direction: column; gap: 2rem; }
.contact-item { display: flex; align-items: flex-start; gap: 1.2rem; }
.contact-icon {
  width: 46px; height: 46px; flex-shrink: 0;
  border: 1px solid rgba(201,168,76,0.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
}
.contact-icon svg { width: 20px; height: 20px; stroke: var(--gold); }

.contact-detail { flex: 1; }
.contact-detail .label {
  font-size: 0.6rem; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.2rem;
}
.contact-detail .value {
  font-size: 0.9rem; color: var(--light-gray); font-weight: 400;
  word-break: break-word;
  overflow-wrap: break-word;
}
.contact-form { display: flex; flex-direction: column; gap: 1.2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label {
  font-size: 0.65rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gold);
}
.form-group input,
.form-group textarea,
.form-group select {
  background: var(--dark2);
  border: 1px solid rgba(201,168,76,0.2);
  color: var(--white);
  padding: 0.9rem 1.1rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem; font-weight: 300;
  outline: none; transition: border-color 0.3s;
  resize: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--gold); }
.form-group select option { background: var(--dark2); }

/* Feedback do formulário */
.form-feedback {
  padding: 0.9rem 1.1rem;
  font-size: 0.82rem;
  font-weight: 500;
  border-radius: 2px;
  text-align: center;
}
.form-feedback.success {
  background: rgba(76, 175, 80, 0.1);
  border: 1px solid rgba(76, 175, 80, 0.4);
  color: #81C784;
}
.form-feedback.error {
  background: rgba(244, 67, 54, 0.1);
  border: 1px solid rgba(244, 67, 54, 0.35);
  color: #e57373;
}

/* Botão submit — mesmo estilo btn-primary mas garantido para button */
.contact-form .btn-primary {
  width: 100%; text-align: center;
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
}
.contact-form .btn-primary:disabled {
  opacity: 0.7; cursor: not-allowed; transform: none !important;
}

/* Spinner */
@keyframes spin { to { transform: rotate(360deg); } }
.spin svg { animation: spin 1s linear infinite; }
.btn-loading { display: flex; align-items: center; gap: 0.5rem; }
.btn-loading svg { width: 16px; height: 16px; stroke: var(--black); animation: spin 1s linear infinite; }

/* ---- FOOTER ---- */
footer {
  background: var(--dark2);
  border-top: 1px solid rgba(201,168,76,0.15);
  padding: 3rem 2rem 1.5rem;
}
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem; margin-bottom: 2rem;
}
.footer-brand img { height: 55px; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.8rem; color: var(--gray); line-height: 1.7; font-weight: 300; }
.footer-col h4 {
  font-size: 0.65rem; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.2rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul a {
  text-decoration: none; color: var(--gray);
  font-size: 0.82rem; font-weight: 300;
  transition: color 0.3s;
}
.footer-col ul a:hover { color: var(--gold-light); }
.footer-bottom {
  max-width: 1100px; margin: 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { font-size: 0.72rem; color: var(--gray); font-weight: 300; }
.footer-bottom .gold-text { color: var(--gold); }
.footer-social { display: flex; gap: 0.8rem; }
.social-btn {
  width: 34px; height: 34px;
  border: 1px solid rgba(201,168,76,0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--gray);
  text-decoration: none; transition: var(--transition);
}
.social-btn svg { width: 16px; height: 16px; stroke: var(--gray); transition: stroke 0.3s; }
.social-btn:hover { border-color: var(--gold); }
.social-btn:hover svg { stroke: var(--gold); }

/* ---- WHATSAPP FLOAT ---- */
.whatsapp-float {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 900;
  width: 56px; height: 56px;
  background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: var(--transition);
  animation: pulseGreen 2s ease infinite;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 8px 30px rgba(37,211,102,0.5); }
.whatsapp-float svg { width: 28px; height: 28px; fill: white; }
@keyframes pulseGreen {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 30px rgba(37,211,102,0.7), 0 0 0 8px rgba(37,211,102,0.1); }
}

/* ---- ANIMATIONS ---- */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  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; }
}
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* =============================================
   RESPONSIVE — Otimizado para todos os dispositivos
   ============================================= */

/* ===== LARGE DESKTOP (1440px+) ===== */
@media (min-width: 1440px) {
  .container { max-width: 1280px; }
  section { padding: 7rem 2rem; }
}

/* ===== DESKTOP / SMALL LAPTOPS (até 1200px) ===== */
@media (max-width: 1200px) {
  .container { max-width: 100%; padding: 0 2rem; }
  nav { padding: 1rem 1.5rem; }
  nav.scrolled { padding: 0.6rem 1.5rem; }
  .nav-links { gap: 1.8rem; }
  .about-grid { gap: 3.5rem; }
  .diff-grid { gap: 2.5rem; }
  .contact-grid { gap: 3rem; }
}

/* ===== TABLET LANDSCAPE / SMALL LAPTOP (até 1024px) ===== */
@media (max-width: 1024px) {
  section { padding: 5rem 1.5rem; }
  nav { padding: 0.9rem 1.5rem; }
  .nav-links { gap: 1.5rem; }
  .nav-links a { font-size: 0.7rem; letter-spacing: 1.5px; }
  .nav-logo img { height: 46px; }
  nav.scrolled .nav-logo img { height: 36px; }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-visual { display: none; }
  .about-features { grid-template-columns: 1fr 1fr; gap: 0.8rem; }

  /* Services - 2 colunas em tablet */
  .services-grid { grid-template-columns: repeat(2, 1fr); }

  /* Diferenciais */
  .diff-grid { grid-template-columns: 1fr; gap: 3rem; }
  .alcance-visual { position: static; padding: 2.5rem; }

  /* Process - 3 colunas em tablet */
  .process-steps { grid-template-columns: repeat(3, 1fr); }

  /* Trust - 2 colunas em tablet */
  .trust-grid { grid-template-columns: repeat(2, 1fr); }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .footer-brand { grid-column: 1 / -1; }

  /* Hero ajustes */
  .hero-logo { width: 160px; }
  .hero-desc { max-width: 480px; font-size: 0.95rem; }
}

/* ===== TABLET PORTRAIT (até 900px) ===== */
@media (max-width: 900px) {
  .nav-links { gap: 1.2rem; }
  .nav-links a { font-size: 0.68rem; letter-spacing: 1px; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item { padding: 1rem; }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(1),
  .stat-item:nth-child(2) { border-bottom: 1px solid rgba(201,168,76,0.15); padding-bottom: 1.5rem; }
  .stat-item:nth-child(3),
  .stat-item:nth-child(4) { padding-top: 1.5rem; }
}

/* ===== MOBILE LARGE / TABLET SMALL (até 768px) ===== */
@media (max-width: 768px) {
  section { padding: 4rem 1.25rem; }
  nav { padding: 0.85rem 1.25rem; }
  nav.scrolled { padding: 0.6rem 1.25rem; }
  .nav-logo img { height: 42px; }
  nav.scrolled .nav-logo img { height: 34px; }

  /* Esconde nav-links, mostra hamburger */
  .nav-links { display: none; }
  .hamburger { display: flex; }

  /* Hero */
  .hero { padding: 7rem 1.5rem 4rem; min-height: auto; }
  .hero-logo { width: 130px; margin-bottom: 1.5rem; }
  .hero-badge { font-size: 0.6rem; letter-spacing: 3px; padding: 0.35rem 1rem; }
  .hero h1 { font-size: clamp(2.8rem, 12vw, 4.5rem); }
  .hero-sub { font-size: 0.7rem; letter-spacing: 3px; margin-bottom: 1.5rem; }
  .hero-desc { font-size: 0.9rem; margin-bottom: 2.5rem; padding: 0 0.5rem; }
  .hero-scroll { display: none; }

  /* Stats */
  .stats-bar { padding: 1.5rem 1rem; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item { padding: 1rem 0.5rem; }
  .stat-num { font-size: 1.8rem; }
  .stat-label { font-size: 0.6rem; letter-spacing: 1.5px; }

  /* Section titles */
  .section-title { font-size: clamp(1.8rem, 6vw, 2.5rem); }
  .section-tag { font-size: 0.6rem; letter-spacing: 3px; }

  /* About */
  .about-features { grid-template-columns: 1fr; }
  .about-text p { font-size: 0.9rem; line-height: 1.8; }

  /* Services - 1 coluna em mobile */
  .services-grid { grid-template-columns: 1fr; }
  .service-card { padding: 2rem 1.5rem; }

  /* Diferenciais */
  .diff-item { padding: 1.25rem; gap: 1rem; }
  .diff-num { font-size: 2rem; }
  .diff-content h4 { font-size: 0.8rem; }
  .alcance-visual { padding: 2rem 1.5rem; }
  .alcance-title { font-size: 1.7rem; }

  /* Process - 2 colunas em mobile maior */
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .step-card { padding: 2rem 1rem; }
  .step-num { font-size: 2.5rem; }

  /* Trust - 1 coluna em mobile */
  .trust-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .trust-card { padding: 2rem 1.5rem; }

  /* CTA */
  .cta-section { padding: 5rem 1.25rem; }
  .cta-section p { font-size: 0.85rem; }
  .cta-border { width: 95%; height: 90%; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .form-row { grid-template-columns: 1fr; gap: 0.8rem; }
  .contact-item { gap: 1rem; }
  .contact-icon { width: 42px; height: 42px; }
  .contact-detail .value { font-size: 0.85rem; word-break: break-word; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
  .footer-brand { grid-column: auto; }
  .footer-brand img { margin: 0 auto 1rem; }
  .footer-col ul { align-items: center; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 1.2rem; }

  /* WhatsApp Float */
  .whatsapp-float { bottom: 1.5rem; right: 1.5rem; width: 50px; height: 50px; }
  .whatsapp-float svg { width: 24px; height: 24px; }

  /* Mobile Menu */
  .mobile-menu a { font-size: 1.3rem; letter-spacing: 2px; }
}

/* ===== MOBILE MEDIUM (até 600px) ===== */
@media (max-width: 600px) {
  section { padding: 3.5rem 1rem; }
  nav { padding: 0.8rem 1rem; }
  nav.scrolled { padding: 0.55rem 1rem; }

  .hero { padding: 6.5rem 1rem 3rem; }
  .hero h1 { font-size: clamp(2.4rem, 11vw, 3.5rem); letter-spacing: -0.5px; }
  .hero-desc { font-size: 0.85rem; line-height: 1.7; }
  .hero-buttons { gap: 0.8rem; width: 100%; padding: 0 1rem; }

  /* Process - 1 coluna */
  .process-steps { grid-template-columns: 1fr; }
  .step-card { padding: 1.8rem 1rem; }

  /* Stats em 2x2 ainda */
  .stat-num { font-size: 1.5rem; }
  .stat-label { font-size: 0.55rem; }

  /* Contact form */
  .form-group input,
  .form-group textarea,
  .form-group select {
    padding: 0.8rem 1rem;
    font-size: 0.85rem;
  }
  .form-group label { font-size: 0.6rem; }

  /* CTA buttons */
  .cta-section h2 { font-size: clamp(2rem, 7vw, 2.8rem); }
}

/* ===== MOBILE SMALL (até 480px) ===== */
@media (max-width: 480px) {
  section { padding: 3rem 1rem; }
  nav { padding: 0.75rem 1rem; }
  .nav-logo img { height: 38px; }
  nav.scrolled .nav-logo img { height: 32px; }

  /* Hero */
  .hero { padding: 6rem 1rem 2.5rem; }
  .hero-logo { width: 110px; margin-bottom: 1.2rem; }
  .hero h1 { font-size: clamp(2.2rem, 10vw, 3rem); }
  .hero-badge { font-size: 0.55rem; padding: 0.3rem 0.9rem; letter-spacing: 2.5px; }
  .hero-sub { font-size: 0.65rem; letter-spacing: 2.5px; }
  .hero-desc { font-size: 0.82rem; padding: 0; margin-bottom: 2rem; }

  /* Botões em mobile pequeno - empilhados */
  .hero-buttons { flex-direction: column; align-items: stretch; padding: 0 0.5rem; }
  .btn-primary, .btn-secondary {
    width: 100%;
    text-align: center;
    padding: 0.9rem 1.5rem;
    font-size: 0.7rem;
  }

  /* Stats em 1 coluna */
  .stats-inner { grid-template-columns: 1fr; }
  .stat-item {
    border-right: none !important;
    border-bottom: 1px solid rgba(201,168,76,0.15);
    padding: 1.2rem 1rem !important;
  }
  .stat-item:last-child { border-bottom: none; }

  /* Section titles */
  .section-title { font-size: clamp(1.6rem, 7vw, 2.2rem); }

  /* Trust - 1 coluna */
  .trust-grid { grid-template-columns: 1fr; }

  /* About card */
  .about-card-main { padding: 2rem 1.5rem; }
  .about-quote { font-size: 1.25rem; }

  /* Diferenciais */
  .diff-item { padding: 1rem; flex-direction: column; gap: 0.5rem; }
  .diff-num { font-size: 1.8rem; }

  /* Alcance */
  .alcance-visual { padding: 1.8rem 1.2rem; }
  .alcance-title { font-size: 1.5rem; }
  .coverage-val { font-size: 0.58rem; padding: 0.3rem 0.6rem; }

  /* Contact */
  .contact-icon { width: 38px; height: 38px; }
  .contact-icon svg { width: 18px; height: 18px; }
  .contact-detail .value { font-size: 0.8rem; }
  .contact-detail .label { font-size: 0.55rem; letter-spacing: 2px; }

  /* Footer */
  .footer-brand p { font-size: 0.75rem; }
  .footer-col ul a { font-size: 0.78rem; }
  .footer-bottom p { font-size: 0.68rem; text-align: center; }

  /* WhatsApp menor */
  .whatsapp-float { width: 46px; height: 46px; bottom: 1.25rem; right: 1.25rem; }
  .whatsapp-float svg { width: 22px; height: 22px; }

  /* Mobile menu close */
  .mobile-close { top: 1.2rem; right: 1.5rem; font-size: 1.8rem; }
  .mobile-menu { gap: 1.5rem; padding: 0 1.5rem; }
  .mobile-menu a { font-size: 1.2rem; letter-spacing: 2px; }
}

/* ===== MOBILE EXTRA SMALL (até 360px) ===== */
@media (max-width: 360px) {
  section { padding: 2.5rem 0.8rem; }
  .hero { padding: 5.5rem 0.8rem 2rem; }
  .hero h1 { font-size: 2rem; }
  .hero-desc { font-size: 0.78rem; }
  .hero-logo { width: 95px; }
  .section-title { font-size: 1.5rem; }
  .nav-logo img { height: 34px; }

  .btn-primary, .btn-secondary {
    padding: 0.85rem 1.2rem;
    font-size: 0.65rem;
    letter-spacing: 1.5px;
  }

  .stat-num { font-size: 1.4rem; }
  .alcance-title { font-size: 1.3rem; }
  .about-quote { font-size: 1.1rem; }
}

/* ===== LANDSCAPE MOBILE (altura baixa) ===== */
@media (max-height: 500px) and (orientation: landscape) {
  .hero { min-height: auto; padding: 5rem 2rem 2rem; }
  .hero-logo { width: 80px; margin-bottom: 0.8rem; }
  .hero h1 { font-size: 2.5rem; margin-bottom: 0.2rem; }
  .hero-sub { margin-bottom: 1rem; }
  .hero-desc { margin-bottom: 1.5rem; font-size: 0.8rem; }
  .hero-scroll { display: none; }
}

/* ===== ACESSIBILIDADE - PREFERS REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
  .particle { display: none; }
  .whatsapp-float { animation: none; }
}

/* ===== TOUCH DEVICES - remove hover effects que prejudicam em touch ===== */
@media (hover: none) and (pointer: coarse) {
  .service-card:hover,
  .trust-card:hover,
  .step-card:hover,
  .about-feat:hover { transform: none; }
}

/* ===== iOS — Previne zoom automático no foco de inputs ===== */
@supports (-webkit-touch-callout: none) {
  @media (max-width: 768px) {
    .form-group input,
    .form-group textarea,
    .form-group select {
      font-size: 16px;
    }
  }
}

/* ===== Garante que nav nunca quebre layout ===== */
nav {
  max-width: 100vw;
}

/* ===== Garante que botões nunca cortem texto crítico ===== */
.btn-primary, .btn-secondary {
  white-space: nowrap;
}
@media (max-width: 480px) {
  .btn-primary, .btn-secondary {
    white-space: normal;
  }
}