/* ============================
   SIMCRED – styles.css
   ============================ */

/* --- RESET & BASE --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'DM Sans', sans-serif;
  color: #1a2233;
  background: #fff;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* --- CSS VARIABLES --- */
:root {
  --blue: #1a6fb4;
  --blue-dark: #0d4e8a;
  --blue-light: #e8f2fb;
  --gold: #e8a020;
  --gold-dark: #c47d00;
  --dark: #0f1b2d;
  --dark2: #1a2a40;
  --gray: #f4f6f9;
  --gray2: #e2e8f0;
  --text: #3a4a60;
  --white: #fff;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(26, 111, 180, 0.10);
  --shadow-lg: 0 12px 48px rgba(26, 111, 180, 0.18);
  --transition: all 0.32s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- CONTAINER --- */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- TYPOGRAPHY HELPERS --- */
.section-label {
  display: inline-block;
  font-family: 'Sora', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.section-label.center { display: block; text-align: center; }
.section-label.light { color: #f9c45a; }

.section-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.25;
  margin-bottom: 16px;
}
.section-title.center { text-align: center; }
.section-title.light { color: var(--white); }

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--dark);
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 18px rgba(232,160,32,0.28);
}
.btn-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(232,160,32,0.38);
}
.btn-primary.full { width: 100%; justify-content: center; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #fff;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 13px 26px;
  border-radius: 8px;
  border: 2px solid rgba(255,255,255,0.7);
  cursor: pointer;
  transition: var(--transition);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--gold);
  color: var(--dark);
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 10px 20px;
  border-radius: 8px;
  transition: var(--transition);
}
.btn-cta:hover { background: var(--gold-dark); }

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--blue-dark);
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 8px;
  transition: var(--transition);
  box-shadow: 0 4px 18px rgba(0,0,0,0.12);
}
.btn-white:hover { background: var(--blue-light); transform: translateY(-2px); }
.btn-white.large { font-size: 1.05rem; padding: 17px 36px; }

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  background: transparent;
  transition: var(--transition);
}
.navbar.scrolled {
  background: var(--dark);
  padding: 12px 0;
  box-shadow: 0 4px 24px rgba(0,0,0,0.25);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 32px;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-badge {
  width: 38px; height: 38px;
  background: var(--gold);
  color: var(--dark);
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
}
.logo-badge.small { width: 30px; height: 30px; font-size: 1rem; }
.logo-text {
  font-family: 'Sora', sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.04em;
}
.logo-text strong { font-weight: 800; }

.nav-links {
  display: flex;
  gap: 28px;
  margin-left: auto;
}
.nav-links a {
  font-family: 'Sora', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  transition: var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.25s ease;
}
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { transform: scaleX(1); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ============================================
   HERO SLIDER
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  overflow: hidden;
}
.hero-slider { position: relative; width: 100%; height: 100%; }

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.8s ease;
  display: flex;
  align-items: center;
}
.slide.active { opacity: 1; z-index: 1; }

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(10,28,55,0.82) 0%, rgba(10,28,55,0.45) 60%, rgba(10,28,55,0.18) 100%);
}

.slide-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  animation: slideIn 0.7s ease forwards;
}
@keyframes slideIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--dark);
  font-family: 'Sora', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 4px;
  margin-bottom: 18px;
}

.slide-content h1 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.18;
  margin-bottom: 18px;
}
.slide-content h1 em {
  font-style: normal;
  color: var(--gold);
}
.slide-content p {
  font-size: 1.08rem;
  color: rgba(255,255,255,0.88);
  margin-bottom: 32px;
  line-height: 1.65;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.slider-btn {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  z-index: 10;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  width: 48px; height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: var(--transition);
  backdrop-filter: blur(4px);
}
.slider-btn:hover { background: var(--gold); color: var(--dark); border-color: var(--gold); }
.slider-btn.prev { left: 24px; }
.slider-btn.next { right: 24px; }

.slider-dots {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 8px;
}
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: var(--transition);
}
.dot.active { background: var(--gold); width: 24px; border-radius: 4px; }

/* ============================================
   STATS BAR
   ============================================ */
.stats-bar {
  background: var(--blue-dark);
  padding: 32px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat-item {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #fff;
}
.stat-item i {
  font-size: 1.8rem;
  color: var(--gold);
  flex-shrink: 0;
}
.stat-item strong {
  display: block;
  font-family: 'Sora', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1;
}
.stat-item span {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.72);
  margin-top: 4px;
  display: block;
}

/* ============================================
   SOBRE
   ============================================ */
.sobre {
  padding: 100px 0;
  background: #fff;
}
.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.sobre-img-wrap {
  position: relative;
}
.sobre-img {
  border-radius: var(--radius);
  width: 100%;
  height: 480px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}
.sobre-badge {
  position: absolute;
  bottom: 28px; right: -20px;
  background: var(--gold);
  color: var(--dark);
  padding: 14px 20px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Sora', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  box-shadow: var(--shadow);
  max-width: 220px;
}
.sobre-badge i { font-size: 1.3rem; flex-shrink: 0; }

.sobre-text h2 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 20px;
  line-height: 1.25;
}
.sobre-text p {
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 16px;
}
.sobre-text .btn-primary { margin-top: 10px; }

/* ============================================
   SERVIÇOS
   ============================================ */
.servicos {
  padding: 100px 0;
  background: var(--gray);
}
.servicos .section-title { margin-bottom: 48px; }
.servicos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.servico-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.servico-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--blue);
  transform: scaleX(0);
  transition: transform 0.35s ease;
}
.servico-card:hover::before { transform: scaleX(1); }
.servico-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.servico-card.destaque {
  background: var(--dark);
  color: #fff;
}
.servico-card.destaque h3 { color: #fff; }
.servico-card.destaque p { color: rgba(255,255,255,0.75); }
.servico-card.destaque .servico-link { color: var(--gold); }
.servico-card.destaque::before { background: var(--gold); }

.servico-icon {
  width: 56px; height: 56px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
}
.servico-icon i { font-size: 1.4rem; color: #fff; }

.servico-card h3 {
  font-family: 'Sora', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}
.servico-card p {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.65;
  margin-bottom: 20px;
}
.servico-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Sora', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--blue);
  transition: gap 0.2s ease;
}
.servico-link:hover { gap: 10px; }

/* ============================================
   DIFERENCIAIS
   ============================================ */
.diferenciais {
  position: relative;
  padding: 100px 0;
  background: var(--dark);
  overflow: hidden;
}
.diferenciais-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(26,111,180,0.25) 0%, transparent 65%),
              radial-gradient(ellipse at 20% 80%, rgba(232,160,32,0.12) 0%, transparent 50%);
}
.diferenciais .container { position: relative; z-index: 1; }
.diferenciais .section-title { margin-bottom: 48px; }

.dif-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.dif-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
}
.dif-card:hover {
  background: rgba(255,255,255,0.09);
  transform: translateY(-4px);
}
.dif-icon {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: rgba(232,160,32,0.18);
  display: grid;
  place-items: center;
  margin: 0 auto 20px;
  border: 1px solid rgba(232,160,32,0.35);
}
.dif-icon i { font-size: 1.4rem; color: var(--gold); }
.dif-card h3 {
  font-family: 'Sora', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.dif-card p { font-size: 0.88rem; color: rgba(255,255,255,0.65); line-height: 1.65; }
.dif-cta { text-align: center; }

/* ============================================
   PARCEIROS
   ============================================ */
.parceiros {
  padding: 80px 0;
  background: #fff;
}
.parceiros .section-title { margin-bottom: 48px; }
.parceiros-track-wrap {
  overflow: hidden;
  position: relative;
}
.parceiros-track-wrap::before,
.parceiros-track-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0; width: 80px;
  z-index: 2;
}
.parceiros-track-wrap::before { left: 0; background: linear-gradient(to right, #fff, transparent); }
.parceiros-track-wrap::after  { right: 0; background: linear-gradient(to left, #fff, transparent); }

.parceiros-track {
  display: flex;
  gap: 24px;
  align-items: center;
  width: max-content;
}
.parceiro-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 120px;
  height: 70px;
  background: #fff;
  border-radius: 16px;
  padding: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}
.parceiro-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  padding: 64px 0;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-text h2 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}
.cta-text p { color: rgba(255,255,255,0.8); }

/* ============================================
   CONTATO
   ============================================ */
.contato {
  padding: 100px 0;
  background: var(--gray);
}
.contato-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contato-info h2 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 16px;
}
.contato-info > p { color: var(--text); margin-bottom: 36px; line-height: 1.7; }

.info-items { display: flex; flex-direction: column; gap: 22px; }
.info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.info-item i {
  font-size: 1.1rem;
  color: var(--blue);
  margin-top: 3px;
  flex-shrink: 0;
  width: 20px;
}
.info-item strong {
  display: block;
  font-family: 'Sora', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 3px;
}
.info-item span {
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.55;
}

.localizacao-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 50px;
  align-items: start;
}
.localizacao-text h2 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 800;
  color: var(--dark);
  margin: 16px 0 20px;
  line-height: 1.1;
}
.localizacao-text p {
  color: var(--text);
  margin-bottom: 30px;
  line-height: 1.75;
  max-width: 520px;
}
.localizacao-list {
  display: grid;
  gap: 16px;
  margin-bottom: 30px;
}
.localizacao-list li {
  color: var(--text);
  font-size: 0.98rem;
  line-height: 1.7;
}
.localizacao-list strong {
  display: inline-block;
  min-width: 100px;
  color: var(--blue-dark);
  font-weight: 700;
}
.map-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.localizacao-map .map-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(25, 47, 76, 0.08);
}
.map-card-info {
  padding: 24px 24px 18px;
  background: linear-gradient(180deg, rgba(26,111,180,0.08), rgba(255,255,255,0));
}
.map-card-label {
  font-size: 0.95rem;
  color: var(--blue);
  font-weight: 700;
  margin-bottom: 8px;
}
.map-card-info h3 {
  margin: 0 0 8px;
  font-size: 1.4rem;
  color: var(--dark);
}
.map-card-text {
  color: var(--text);
  line-height: 1.8;
}
.map-plugin {
  border-radius: 0 0 24px 24px;
  overflow: hidden;
  box-shadow: none;
  margin-bottom: 0;
}
.map-plugin iframe {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
}
.contato-form {
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  box-shadow: var(--shadow-lg);
}
.contato-form h3 {
  font-family: 'Sora', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 28px;
}
.form-group {
  margin-bottom: 18px;
}
.form-group label {
  display: block;
  font-family: 'Sora', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--dark2);
  margin-bottom: 6px;
}
.form-group input,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray2);
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--dark);
  background: #fff;
  transition: border-color 0.2s ease;
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus { border-color: var(--blue); }
.form-group select { cursor: pointer; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: #07101f;
  color: #f8fafc;
}
.footer-top { padding: 80px 0 40px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 36px;
  align-items: start;
}
.footer-col { }
.footer-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.footer-brand-subtitle {
  margin: 4px 0 0;
  font-size: 0.85rem;
  color: rgba(248,250,252,0.7);
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
.footer-desc {
  font-size: 0.95rem;
  color: rgba(248,250,252,0.75);
  line-height: 1.8;
  margin-bottom: 26px;
  max-width: 520px;
}
.social-links {
  display: flex;
  gap: 14px;
}
.social-links a {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.08);
  transition: all 0.25s ease;
}
.social-links a:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-1px);
}
.footer-col h4 {
  font-family: 'Sora', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(248,250,252,0.65);
  margin-bottom: 18px;
}
.footer-col ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.footer-col ul li {
  margin-bottom: 12px;
}
.footer-col ul li a,
.footer-contact li span {
  font-size: 0.95rem;
  color: rgba(248,250,252,0.75);
  line-height: 1.7;
}
.footer-col ul li a {
  transition: color 0.2s ease;
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-contact li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 14px;
}
.footer-contact li i {
  color: var(--gold);
  font-size: 0.95rem;
  margin-top: 3px;
  width: 18px;
  flex-shrink: 0;
}
.footer-contact a {
  color: rgba(248,250,252,0.75);
}
.footer-contact a:hover { color: var(--gold); }
.footer-legal {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0 16px;
}
.footer-legal-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
  text-align: center;
}
.legal-text {
  font-size: 0.82rem;
  color: rgba(248,250,252,0.62);
  line-height: 1.8;
  text-align: center;
}
.footer-legal-group-wrap {
  text-align: center;
  margin: 0 auto 28px;
}
.footer-legal-group {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border: 1px solid rgba(232,160,32,0.55);
  border-radius: 999px;
  background: rgba(232,160,32,0.12);
  color: rgba(255,255,255,0.92);
  font-size: 0.95rem;
  text-align: center;
}
.footer-legal-group strong {
  color: var(--gold);
}
.footer-legal-note {
  margin-top: 0;
}
.copyright p {
  font-size: 0.78rem;
  color: rgba(248,250,252,0.45);
  text-align: center;
  margin: 0;
}
.copyright p a {
  color: rgba(248,250,252,0.75);
  text-decoration: none;
  transition: color 0.2s ease;
}
.copyright p a:hover {
  color: var(--gold);
}
.footer-legal-note p {
  font-size: 0.88rem;
  color: rgba(248,250,252,0.72);
  line-height: 1.8;
  text-align: center;
  margin: 0 auto;
}
.copyright {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 18px;
}
.copyright p {
  font-size: 0.78rem;
  color: rgba(248,250,252,0.45);
  text-align: center;
  margin: 0;
}

/* ============================================
   WHATSAPP FLOAT
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 998;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.7rem;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  transition: var(--transition);
  animation: pulse 2.5s ease infinite;
}
.whatsapp-float:hover { transform: scale(1.1); background: #20b85a; }
@keyframes pulse {
  0%,100% { box-shadow: 0 6px 24px rgba(37,211,102,0.45); }
  50% { box-shadow: 0 6px 36px rgba(37,211,102,0.7); }
}

/* ============================================
   SCROLL REVEAL
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: none;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .sobre-grid { grid-template-columns: 1fr; gap: 40px; }
  .sobre-img { height: 340px; }
  .sobre-badge { right: 0; }
  .servicos-grid { grid-template-columns: repeat(2, 1fr); }
  .dif-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contato-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    bottom: 0;
    width: 260px;
    background: var(--dark);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    transition: right 0.35s ease;
    z-index: 1001;
  }
  .nav-links.open { right: 0; }
  .nav-links a { font-size: 1.1rem; }
  .hamburger { display: flex; }
  .btn-cta { display: none; }

  .slide-content h1 { font-size: 1.8rem; }
  .hero-btns { flex-direction: column; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .servicos-grid { grid-template-columns: 1fr; }
  .dif-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-legal-inner { flex-direction: column; gap: 16px; }
  .cta-inner { flex-direction: column; text-align: center; }
  .sobre-badge { position: static; margin-top: 16px; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .contato-form { padding: 24px 20px; }
  .slider-btn { width: 36px; height: 36px; }
}