@import url("https://fonts.googleapis.com/css2?family=PT+Serif:wght@400;700&family=Schibsted+Grotesk:wght@400;500;600;700;800&display=swap");

:root {
  --bg: #070707;
  --surface: rgba(255, 255, 255, 0.06);
  --surface-2: rgba(255, 255, 255, 0.1);
  --border: rgba(255, 255, 255, 0.16);
  --text: #eceff3;
  --muted: #b8c0ca;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

body {
  min-height: 100vh;
  color: var(--text);
  background: radial-gradient(1000px 420px at 50% -10%, #232323 0%, #111111 48%, #070707 100%);
  font-family: "Schibsted Grotesk", "Segoe UI", sans-serif;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 14px;
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(8px);
  background: rgba(5, 5, 5, 0.82);
}

.logo-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 112px;
  height: 42px;
  padding: 2px 8px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: linear-gradient(90deg, rgba(210, 210, 210, 0.2), rgba(120, 120, 120, 0.12));
}

.logo-wrap img {
  max-width: 94px;
  max-height: 28px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: brightness(0.08) contrast(1.08);
}

.topbar nav a {
  color: var(--muted);
  text-decoration: none;
  margin-left: 14px;
  display: inline-block;
  line-height: 1;
}

.topbar nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 12px;
}

.topbar nav a {
  margin-left: 0;
}

.topbar nav a:hover {
  color: var(--text);
}

.contato-page {
  max-width: 1140px;
  margin: 0 auto;
  padding: 38px 16px 48px;
}

.hero {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 18px;
  align-items: stretch;
}

.hero-copy {
  border: 1px solid var(--border);
  border-radius: 18px;
  background: linear-gradient(180deg, var(--surface) 0%, rgba(0, 0, 0, 0.34) 100%);
  padding: 20px;
}

.hero-copy h1 {
  margin: 0 0 10px;
  font-size: clamp(34px, 4.5vw, 56px);
  line-height: 1.08;
  font-family: "PT Serif", Georgia, serif;
  text-decoration: underline;
  text-underline-offset: 8px;
  text-decoration-thickness: 1.5px;
}

.hero-copy p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(18px, 2.2vw, 22px);
  line-height: 1.5;
}

.actions {
  margin-top: 20px;
}

.btn {
  display: inline-block;
  margin-right: 10px;
  margin-top: 10px;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid var(--border);
  color: var(--text);
  text-decoration: none;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.05));
}

.btn:hover {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.17), rgba(255, 255, 255, 0.09));
}

.btn.ghost {
  background: rgba(255, 255, 255, 0.03);
}

.mascot-spot {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 18px;
  padding: 18px 14px;
  background: radial-gradient(circle at 50% 32%, #d2d2d2 0%, #c2c2c2 50%, #959595 100%);
  min-height: 410px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.mascot-video {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right top;
  max-width: none;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.42));
  z-index: 2;
}

.tail-bg-text {
  position: absolute;
  inset: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(30px, 4vw, 44px);
  font-family: "PT Serif", Georgia, serif;
  letter-spacing: 4px;
  color: rgba(35, 35, 35, 0.42);
  z-index: 1;
}

.tail-caption {
  position: relative;
  z-index: 3;
  margin: 10px 0 0;
  font-weight: 700;
  color: #111;
  background: rgba(255, 255, 255, 0.54);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  padding: 8px 10px;
}

.cards {
  margin-top: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.cards article {
  border: 1px solid var(--border);
  border-radius: 18px;
  background: linear-gradient(180deg, var(--surface) 0%, rgba(0, 0, 0, 0.34) 100%);
  padding: 18px;
}

.cards h2 {
  margin: 0 0 10px;
  font-size: clamp(26px, 3vw, 34px);
  font-family: "PT Serif", Georgia, serif;
}

.cards p, .cards li {
  color: var(--muted);
  line-height: 1.5;
  font-size: 18px;
}

.cards ul {
  margin: 0;
  padding-left: 20px;
}

@media (max-width: 900px) {
  .topbar {
    flex-direction: column;
    gap: 8px;
    align-items: center;
  }

  .topbar nav {
    justify-content: center;
  }

  .hero,
  .cards {
    grid-template-columns: 1fr;
  }
}
