body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  background: #0e1116;
  color: #eaeaea;
}

/* WRAPPER CENTRATO */
.page {
  max-width: 950px;
  margin: 0 auto;
  padding: 0 20px;
}

/* TOP BAR */
.topbar {
  text-align: center;
  padding: 25px;
  border-bottom: 1px solid #222;
}

.logo-img {
  width: 45px;
  height: 45px;
  object-fit: contain;
  margin-bottom: 10px;
}

.brand {
  font-size: 22px;
  letter-spacing: 2px;
}

.tag {
  font-size: 12px;
  color: #8a8f98;
}

/* HERO */
.hero {
  text-align: center;
  padding: 80px 10px 40px;
}

.label {
  font-size: 12px;
  letter-spacing: 2px;
  color: #9aa4b2;
}

.hero h1 {
  font-size: 34px;
  max-width: 700px;
  margin: auto;
}

.cta {
  display: inline-block;
  margin-top: 25px;
  padding: 14px 26px;
  background: #ff2b2b;
  color: white;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: 0.2s;
}

.cta:hover {
  transform: scale(1.05);
}

.micro {
  margin-top: 10px;
  font-size: 12px;
  color: #777;
}

/* SECTIONS */
.section {
  opacity: 0;
  transform: translateY(25px);
  transition: all 0.8s ease;
  padding: 40px 0;
}

.section.visible {
  opacity: 1;
  transform: translateY(0);
}

h2 {
  font-size: 18px;
  border-left: 3px solid #1e5eff;
  padding-left: 10px;
}

p {
  line-height: 1.8;
  color: #cfd6dd;
}

/* VIDEO GRID */
.video-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.video-card iframe {
  width: 100%;
  height: 320px;
  border: none;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(255,0,0,0.12);
}

/* SOCIAL */
.socials {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.socials a {
  width: 44px;
  height: 44px;
  border: 1px solid #333;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: 0.2s;
}

.socials a:hover {
  border-color: #1e5eff;
  transform: scale(1.1);
}

/* NEWSLETTER */
.newsletter input {
  padding: 10px;
  width: 60%;
  max-width: 280px;
}

.newsletter button {
  padding: 10px 14px;
  background: #ff2b2b;
  border: none;
  color: white;
  cursor: pointer;
}

/* HIGHLIGHT */
.highlight {
  border-left: 3px solid #ff2b2b;
  padding-left: 10px;
  font-weight: bold;
}

.final {
  font-weight: bold;
}

/* FOOTER */
.footer {
  text-align: center;
  font-size: 12px;
  color: #666;
  padding: 40px 0;
  border-top: 1px solid #222;
}
