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

:root {
  --gold: #5BABDE;
  --gold-light: #89CFEE;
  --gold-dim: rgba(91,171,222,0.13);
  --blue: #5BABDE;
  --blue-dim: rgba(91,171,222,0.12);
  --silver: #C8D8E8;
  --silver-dim: rgba(200,216,232,0.1);
  --bg: #020305;
  --bg2: #05070a;
  --bg3: #080c10;
  --surface: #0c1018;
  --surface2: #101520;
  --border: rgba(91,171,222,0.08);
  --border-gold: rgba(91,171,222,0.28);
  --text: #EDF2F7;
  --text-muted: #7A90A8;
  --text-dim: #B0C4D8;
  --whats: #25D366;
  --insta: #E1306C;
  --radius: 20px;
  --radius-sm: 12px;
  --radius-lg: 32px;
}

html { scroll-behavior: smooth; }

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

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: all .3s ease; }

.container {
  width: min(1200px, calc(100% - 40px));
  margin: auto;
}

/* ===== CUSTOM CURSOR ===== */
.cursor, .cursor-dot {
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  border-radius: 50%;
  transition: transform 0.15s ease;
}
.cursor {
  width: 36px; height: 36px;
  border: 1.5px solid var(--gold);
  transform: translate(-50%, -50%);
  transition: width .3s, height .3s, opacity .3s, border-color .3s;
  mix-blend-mode: normal;
}
.cursor-dot {
  width: 6px; height: 6px;
  background: var(--gold-light);
  transform: translate(-50%, -50%);
}
@media (hover: none) { .cursor, .cursor-dot { display: none; } }

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0; left: 0; width: 100%;
  z-index: 900;
  padding: 0;
  background: rgba(4,4,6,0);
  transition: background .4s ease, padding .3s ease, box-shadow .4s ease;
}
.header.scrolled {
  background: rgba(4,4,6,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border), 0 20px 60px rgba(0,0,0,.5);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  height: 110px;
}

.logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.logo-img {
  width: 340px;
  height: 96px;
  object-fit: contain;
  object-position: left center;
}

.menu {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dim);
  letter-spacing: 0.03em;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .3s ease;
}
.nav-link:hover { color: var(--text); }
.nav-link:hover::after { width: 100%; }

.header-right { display: flex; align-items: center; gap: 16px; }

.btn-cta-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: var(--gold);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  border-radius: 100px;
  letter-spacing: 0.02em;
  transition: all .3s ease;
}
.btn-cta-header:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(91,171,222,0.4);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all .3s ease;
}

/* MOBILE MENU */
.mobile-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,.7);
  z-index: 800;
  backdrop-filter: blur(4px);
}
.mobile-menu {
  position: fixed;
  top: 0; right: -320px;
  width: 300px; height: 100vh;
  background: var(--surface);
  z-index: 850;
  display: flex; flex-direction: column;
  padding: 80px 32px 40px;
  gap: 8px;
  border-left: 1px solid var(--border);
  transition: right .4s cubic-bezier(.22,.61,.36,1);
}
.mobile-menu.open { right: 0; }
.mobile-overlay.open { display: block; }
.mobile-close {
  position: absolute; top: 24px; right: 24px;
  background: none; border: none;
  color: var(--text); font-size: 22px;
  cursor: pointer;
}
.mobile-link {
  font-size: 18px; font-weight: 500;
  color: var(--text-dim);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  transition: color .2s;
}
.mobile-link:hover { color: var(--gold); }
.mobile-cta {
  margin-top: 24px;
  padding: 16px;
  background: var(--whats);
  color: #fff;
  font-weight: 700;
  border-radius: var(--radius);
  text-align: center;
  font-size: 16px;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  background: var(--whats);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  border-radius: 100px;
  letter-spacing: 0.02em;
  transition: all .3s ease;
  white-space: nowrap;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(37,211,102,0.35);
  background: #20c95e;
}
.btn-primary.btn-large { padding: 18px 36px; font-size: 16px; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  border: 1px solid var(--border-gold);
  color: var(--gold-light);
  font-weight: 600;
  font-size: 15px;
  border-radius: 100px;
  transition: all .3s ease;
}
.btn-ghost:hover {
  border-color: var(--gold);
  background: var(--gold-dim);
  transform: translateY(-3px);
}

.btn-insta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  background: var(--insta);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  border-radius: 100px;
  transition: all .3s ease;
}
.btn-insta:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(225,48,108,.35); }

/* ===== LABELS & HEADINGS ===== */
.label-tag {
  display: inline-block;
  padding: 6px 16px;
  border: 1px solid var(--border-gold);
  border-radius: 100px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 20px;
  background: var(--gold-dim);
}

h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 5vw, 54px);
  line-height: 1.1;
  margin-bottom: 20px;
  font-weight: 700;
}
h2 em { font-style: italic; color: var(--gold-light); }

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 60px;
}
.section-header p { color: var(--text-muted); font-size: 17px; }

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

.hero-bg {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero-gradient {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 20%, rgba(91,171,222,.10) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 10% 80%, rgba(137,207,238,.06) 0%, transparent 50%),
    linear-gradient(180deg, rgba(2,3,5,0) 0%, rgba(2,3,5,.3) 60%, rgba(2,3,5,1) 100%);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at center, black 30%, transparent 80%);
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.hero-orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(91,171,222,.14), transparent 70%);
  top: -100px; right: -100px;
  animation: orbFloat 8s ease-in-out infinite alternate;
}
.hero-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(137,207,238,.08), transparent 70%);
  bottom: 0; left: -80px;
  animation: orbFloat 10s ease-in-out infinite alternate-reverse;
}
@keyframes orbFloat { from { transform: translate(0,0) scale(1); } to { transform: translate(30px,-40px) scale(1.1); } }

.hero-inner { position: relative; z-index: 1; max-width: 900px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  border: 1px solid var(--border-gold);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--gold-light);
  background: var(--gold-dim);
  margin-bottom: 30px;
  letter-spacing: 0.05em;
}
.badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(91,171,222,.6); } 50% { box-shadow: 0 0 0 6px rgba(91,171,222,0); } }

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(48px, 8vw, 92px);
  line-height: 1.0;
  margin-bottom: 24px;
  font-weight: 700;
}
.hero-title em { font-style: italic; color: var(--gold-light); }

.hero-sub {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--text-dim);
  max-width: 580px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 24px 0;
  border-top: 1px solid var(--border);
}
.stat { flex: 1; padding: 0 28px; }
.stat:first-child { padding-left: 0; }
.stat strong { display: block; font-size: 32px; font-weight: 800; color: var(--gold-light); font-family: 'Playfair Display', serif; line-height: 1; margin-bottom: 6px; }
.stat span { font-size: 13px; color: var(--text-muted); line-height: 1.4; }
.stat-divider { width: 1px; height: 40px; background: var(--border); flex-shrink: 0; }

.hero-scroll {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  display: flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--text-muted);
  font-size: 14px;
  animation: bounce 2s ease-in-out infinite;
  z-index: 1;
}
@keyframes bounce { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(6px); } }

/* ===== SOBRE ===== */
.sobre { padding: 120px 0; }
.sobre-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.fotos-wrapper {
  position: relative;
  height: 580px;
}
.foto-card {
  position: absolute;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,.5);
  border: 1px solid var(--border);
}
.foto-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.foto-card:hover img { transform: scale(1.03); }
.foto-card-1 {
  width: 240px; height: 340px;
  top: 0; left: 0;
}
.foto-card-2 {
  width: 240px; height: 320px;
  bottom: 0; right: 0;
}
.foto-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px 18px 16px;
  background: linear-gradient(transparent, rgba(0,0,0,.88));
}
.foto-label strong { display: block; font-size: 14px; font-weight: 700; color: #fff; }
.foto-label span { font-size: 11px; color: var(--gold-light); }
.foto-deco {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 200px; height: 200px;
  border-radius: 50%;
  border: 1px solid var(--border-gold);
  pointer-events: none;
  opacity: 0.4;
}
.foto-deco::before {
  content: '';
  position: absolute; inset: 20px;
  border-radius: 50%;
  border: 1px dashed var(--border-gold);
  animation: spin 20s linear infinite;
}
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.sobre-content p { color: var(--text-dim); margin-bottom: 36px; font-size: 17px; line-height: 1.8; }

.beneficios-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 36px;
}
.beneficio-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color .3s, transform .3s;
}
.beneficio-item:hover { border-color: var(--border-gold); transform: translateY(-3px); }
.beneficio-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  background: var(--gold-dim);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  color: var(--gold);
  flex-shrink: 0;
}
.beneficio-item h4 { font-size: 14px; font-weight: 700; margin-bottom: 3px; }
.beneficio-item p { font-size: 12px; color: var(--text-muted); margin: 0; }

/* ===== STRIP BANNER ===== */
.strip-banner {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
  background: var(--surface);
}
.strip-track {
  display: flex;
  gap: 24px;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.strip-track span { font-size: 13px; font-weight: 600; color: var(--text-muted); letter-spacing: 0.05em; text-transform: uppercase; }
.strip-track .dot { color: var(--gold); }

/* ===== SERVIÇOS ===== */
.servicos { padding: 120px 0; background: var(--bg2); }

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

.servico-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: all .4s ease;
  cursor: pointer;
}
.servico-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(91,171,222,.08) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .4s ease;
}
.servico-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,.4), 0 0 0 1px var(--border-gold);
}
.servico-card:hover::before { opacity: 1; }

.servico-num {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 800;
  color: rgba(201,168,76,.06);
  line-height: 1;
  position: absolute;
  top: 20px; right: 24px;
  letter-spacing: -2px;
}
.servico-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: var(--gold-dim);
  border: 1px solid var(--border-gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; color: var(--gold);
  margin-bottom: 20px;
  position: relative; z-index: 1;
  transition: all .3s;
}
.servico-card:hover .servico-icon {
  background: var(--gold);
  color: #020202;
}
.servico-card h3 {
  font-size: 18px; font-weight: 700;
  margin-bottom: 10px;
  position: relative; z-index: 1;
}
.servico-card p {
  font-size: 14px; color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
  position: relative; z-index: 1;
}
.servico-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px; font-weight: 600;
  color: var(--gold);
  position: relative; z-index: 1;
  transition: gap .3s;
}
.servico-card:hover .servico-cta { gap: 10px; }

.servico-card-highlight {
  background: linear-gradient(135deg, rgba(91,171,222,.08) 0%, var(--surface) 60%);
  border-color: var(--border-gold);
}

/* ===== CTA BANNER ===== */
.cta-banner {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--surface) 0%, var(--surface2) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(91,171,222,.12), transparent 70%);
  pointer-events: none;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  position: relative; z-index: 1;
}
.cta-text h2 { margin-bottom: 10px; }
.cta-text p { color: var(--text-muted); font-size: 16px; }
.cta-actions { text-align: center; }
.cta-note { margin-top: 12px; font-size: 12px; color: var(--text-muted); display: flex; align-items: center; justify-content: center; gap: 6px; }
.cta-note i { color: var(--gold); }

/* ===== VIDEO ===== */
.video-section { padding: 120px 0; }
.video-wrapper {
  position: relative;
  max-width: 340px;
  margin: 0 auto;
}
.video-wrapper video {
  width: 100%;
  border-radius: 28px;
  display: block;
  box-shadow: 0 30px 80px rgba(0,0,0,.5);
  border: 1px solid var(--border);
}
.video-badge {
  position: absolute;
  top: 20px; left: 20px;
  display: flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  background: rgba(4,4,6,.8);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 12px; font-weight: 600;
  color: var(--gold);
}
.video-badge i { font-size: 10px; }

/* ===== DEPOIMENTOS ===== */
.depoimentos { padding: 120px 0; background: var(--bg2); }

.depo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.depo-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all .3s ease;
}
.depo-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,.35);
}
.depo-stars { color: var(--gold); font-size: 13px; letter-spacing: 2px; margin-bottom: 16px; }
.depo-card p { font-size: 15px; color: var(--text-dim); line-height: 1.75; margin-bottom: 24px; font-style: italic; }
.depo-author { display: flex; align-items: center; gap: 12px; }
.depo-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--gold-dim);
  border: 1px solid var(--border-gold);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 16px; color: var(--gold);
  flex-shrink: 0;
}
.depo-author strong { display: block; font-size: 14px; font-weight: 700; }
.depo-author span { font-size: 12px; color: var(--gold); }

/* ===== CONTATO ===== */
.contato { padding: 120px 0; }
.contato-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: start;
}
.contato-info p { color: var(--text-dim); margin-bottom: 36px; font-size: 16px; line-height: 1.8; }

.info-list { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }
.info-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color .3s;
}
.info-item:hover { border-color: var(--border-gold); }
.info-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  border-radius: var(--radius-sm);
  background: var(--gold-dim);
  border: 1px solid var(--border-gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--gold);
}
.info-item strong { display: block; font-size: 14px; font-weight: 700; margin-bottom: 2px; }
.info-item span { font-size: 14px; color: var(--text-muted); }

.contato-btns { display: flex; gap: 14px; flex-wrap: wrap; }

.mapa-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 20px 60px rgba(0,0,0,.4);
  height: 440px;
}
.mapa-wrapper iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ===== FOOTER ===== */
.footer { padding: 80px 0 0; background: var(--surface); border-top: 1px solid var(--border); }
.footer-inner {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-logo { height: 80px; width: auto; margin-bottom: 20px; }
.footer-logo-area p { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 24px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: var(--text-muted);
  transition: all .3s;
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-dim); }

.footer-docs { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.footer-doc h4 { font-size: 15px; font-weight: 700; color: var(--gold-light); margin-bottom: 12px; }
.footer-doc p { font-size: 13px; color: var(--text-muted); line-height: 1.8; }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 24px 0;
}
.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom span { font-size: 13px; color: var(--text-muted); }

/* ===== FLOAT BUTTON ===== */
.float-btn {
  position: fixed;
  right: 24px; bottom: 24px;
  width: 62px; height: 62px;
  border-radius: 50%;
  background: var(--whats);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; color: #fff;
  z-index: 800;
  box-shadow: 0 8px 30px rgba(37,211,102,.5);
  transition: all .3s;
}
.float-btn:hover { transform: scale(1.1); box-shadow: 0 12px 40px rgba(37,211,102,.6); }
.float-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--whats);
  animation: ripple 2.5s ease-out infinite;
  opacity: 0;
}
@keyframes ripple {
  0% { transform: scale(0.9); opacity: .8; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* ===== REVEAL ANIMATIONS ===== */
.reveal-up, .reveal-left, .reveal-right {
  opacity: 0;
  transition: opacity .8s ease, transform .8s ease;
}
.reveal-up { transform: translateY(40px); }
.reveal-left { transform: translateX(-50px); }
.reveal-right { transform: translateX(50px); }
.revealed {
  opacity: 1 !important;
  transform: none !important;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .servicos-grid { grid-template-columns: repeat(2, 1fr); }
  .depo-grid { grid-template-columns: repeat(2, 1fr); }
  .sobre-inner { grid-template-columns: 1fr; gap: 60px; }
  .fotos-wrapper { height: 380px; }
  .foto-card-1 { width: 200px; height: 280px; }
  .foto-card-2 { width: 200px; height: 260px; }
}

@media (max-width: 860px) {
  .menu { display: none; }
  .hamburger { display: flex; }
  .btn-cta-header { display: none; }
  .contato-inner { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-docs { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-text { text-align: center; }
  .hero-stats { flex-direction: column; gap: 24px; }
  .stat-divider { width: 60px; height: 1px; }
}

@media (max-width: 640px) {
  .servicos-grid { grid-template-columns: 1fr; }
  .depo-grid { grid-template-columns: 1fr; }
  .beneficios-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn-primary,
  .hero-actions .btn-ghost { width: 100%; justify-content: center; }
  .contato-btns .btn-primary,
  .contato-btns .btn-insta { width: 100%; justify-content: center; }
  .foto-card-1 { width: 160px; height: 220px; }
  .foto-card-2 { width: 160px; height: 210px; }
  .fotos-wrapper { height: 300px; }
  .mapa-wrapper { height: 300px; }
}
