* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: system-ui, sans-serif; color: #1a1a2e; background: #f5f7fb; }
.container { max-width: 1100px; margin: 0 auto; padding: 40px 20px; }
.topbar { position: absolute; top: 0; left: 0; right: 0; z-index: 20; background: rgba(15, 23, 42, 0.35); backdrop-filter: blur(8px); border-bottom: 1px solid rgba(255,255,255,0.1); }
.topbar-content { display: flex; align-items: center; justify-content: space-between; padding: 4px 10px; min-height: 26px; }
.brand-mini { display: flex; align-items: center; gap: 6px; color: #fff; font-weight: 600; font-size: 0.8rem; line-height: 1; }
.brand-mini img { width: 16px; height: 16px; }
.btn-sm { padding: 2px 10px; font-size: 0.76rem; margin-top: 0; display: inline-flex; align-items: center; justify-content: center; line-height: 1; }
.hero {
  position: relative;
  color: white;
  padding: 120px 0;
  background: none;
  --hero-zoom: 1.06;
  overflow: hidden;
}
.hero.fade {
  filter: brightness(0.95);
}
@keyframes heroZoom {
  0% { transform: scale(1); }
  50% { transform: scale(var(--hero-zoom)); }
  100% { transform: scale(1); }
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(135deg, rgba(10, 15, 30, 0.82), rgba(10, 15, 30, 0.55)), var(--hero-image, url("/static/ilustracoes/capa.webp"));
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform-origin: center;
  animation: heroZoom 12s ease-in-out infinite;
  will-change: transform, background-position;
  z-index: 0;
}
.hero.slide::before {
  animation: heroSlide 0.8s ease;
}
@keyframes heroSlide {
  from { background-position: 70% center; }
  to { background-position: center; }
}
.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -50px;
  height: 320px;
  background: linear-gradient(180deg, rgba(245, 247, 251, 0) 0%, rgba(245, 247, 251, 1) 100%);
}
.hero .container { position: relative; z-index: 1; }
.hero h1 { font-size: 2.8rem; margin-bottom: 14px; line-height: 1.15; }
.hero p { font-size: 1.2rem; opacity: 0.95; }
.hero-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.hero-brand .logo { width: 44px; height: 44px; object-fit: contain; }
.hero-brand .brand { font-weight: 700; font-size: 1.3rem; letter-spacing: 0.4px; }
.btn { display: inline-block; margin-top: 20px; padding: 12px 20px; background: #00d9ff; color: #1a1a2e; text-decoration: none; border-radius: 8px; font-weight: bold; border: 2px solid transparent; }
.btn-outline { background: transparent; color: #00d9ff; border-color: #00d9ff; }
.btn-sm { padding: 8px 14px; font-size: 0.9rem; }
.section { padding: 60px 0; }
.section.alt { background: white; }
.grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 30px; align-items: start; }
.card { background: white; padding: 25px; border-radius: 12px; box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
.card ul { list-style: none; margin-top: 15px; }
.card li { margin-bottom: 8px; }
.card.destaque { border: 2px solid #28a745; box-shadow: 0 6px 25px rgba(40,167,69,0.15); }
.destaques { list-style: none; margin: 16px 0; }
.destaques li { margin-bottom: 8px; font-size: 1.02rem; display: flex; align-items: center; gap: 10px; }
.destaques i { color: #00a8cc; }
.form { background: #f9fbff; padding: 25px; border-radius: 12px; border: 1px solid #e3e8f0; }
.form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.form input { width: 100%; padding: 12px; border: 1px solid #cfd8e3; border-radius: 8px; }
.field label { display: block; margin-bottom: 6px; font-size: 0.9rem; color: #445; }
.alert { background: #ffe3e3; color: #a51616; padding: 10px 15px; border-radius: 8px; margin-bottom: 12px; }

.modal { position: fixed; inset: 0; background: rgba(8, 12, 20, 0.6); display: none; align-items: center; justify-content: center; z-index: 9998; padding: 20px; }
.modal.active { display: flex; }
.modal .modal-content { background: #fff; border-radius: 14px; padding: 24px; max-width: 420px; width: 100%; text-align: center; box-shadow: 0 12px 30px rgba(0,0,0,0.25); }
.modal .modal-content h3 { margin-bottom: 8px; }
.modal .modal-content p { color: #445; margin-bottom: 16px; }
.small { font-size: 0.85rem; color: #556; margin-top: 10px; }
.muted { color: #cbd5e1; margin-top: 8px; }
.section.alt .muted { color: #667; }
.cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 10px; }

.shots-row {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding: 12px 6px 18px;
  scroll-snap-type: x mandatory;
}
.shots-row::-webkit-scrollbar { height: 10px; }
.shots-row::-webkit-scrollbar-thumb { background: #cfd8e3; border-radius: 999px; }
.shots-row::-webkit-scrollbar-track { background: #f1f4f8; }

.shot {
  min-width: 260px;
  background: linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
  border: 1px solid #dde4ee;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(26, 33, 46, 0.12);
  scroll-snap-align: start;
}
.shot a { display: block; }
.shot img { width: 100%; height: 180px; object-fit: cover; display: block; transition: transform 0.2s ease; }
.shot a:hover img { transform: scale(1.02); }
.shot figcaption { padding: 10px 12px; font-weight: 600; color: #445; text-align: center; border-top: 1px solid #edf1f6; background: #fff; }

.proof { background: #e8f5e9; border: 1px solid #bfe3c2; padding: 16px 20px; border-radius: 12px; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.proof i { color: #28a745; margin-right: 6px; }
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(8, 12, 20, 0.88);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 24px;
}
.lightbox.active { display: flex; }
.lightbox-content {
  position: relative;
  max-width: 1100px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.lightbox img {
  max-width: 100%;
  max-height: 75vh;
  border-radius: 12px;
  box-shadow: 0 12px 35px rgba(0,0,0,0.35);
}
.lightbox-caption { color: #e2e8f0; font-weight: 600; }
.lightbox-close {
  position: absolute;
  top: -4px;
  left: 0;
  background: #00d9ff;
  color: #0f172a;
  border: none;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
}
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.2);
  border: none;
  color: white;
  font-size: 28px;
  padding: 8px 14px;
  border-radius: 10px;
  cursor: pointer;
}
.lightbox-nav.prev { left: -6px; }
.lightbox-nav.next { right: -6px; }

@media (max-width: 800px) {
  .grid { grid-template-columns: 1fr; }
  .form .row { grid-template-columns: 1fr; }
  .hero { padding: 60px 0; min-height: auto; --hero-zoom: 1.02; }
  .hero::before { background-position: center top; }
  .hero::after { height: 260px; bottom: -40px; left: 0; right: 0; }
  .hero h1 { font-size: 2rem; }
  .shot img { height: 160px; }
  .lightbox-nav.prev { left: 4px; }
  .lightbox-nav.next { right: 4px; }
}
