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

:root {
  --bg: #000;
  --bg-soft: #111;
  --card: #1a1a1a;
  --primary: #fa8a01;
  --text: #fff;
  --text-muted: #bbb;
  --radius: 14px;
}

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

/* ======================================================
   HEADER / NAV
====================================================== */
header {
  background: #000;
  border-bottom: 2px solid var(--primary);
  padding: 15px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
}

header img {
  max-height: 70px;
}

#menu-toggle {
  display: none;
  font-size: 28px;
  background: none;
  border: none;
  color: var(--primary);
  cursor: pointer;
}

nav {
  display: flex;
  gap: 20px;
}

nav a {
  color: var(--primary);
  font-weight: bold;
  text-decoration: none;
  transition: .3s;
}

nav a:hover {
  color: #fff;
}

/* Mobile */
@media (max-width: 768px) {
  #menu-toggle {
    display: block;
  }
  nav {
    display: none;
    flex-direction: column;
    background: #111;
    position: absolute;
    top: 75px;
    right: 20px;
    padding: 15px;
    border-radius: var(--radius);
  }
  nav.show {
    display: flex;
  }
}

/* ======================================================
   HERO
====================================================== */
.hero {
  padding: 90px 20px;
  text-align: center;
  background: linear-gradient(160deg, #111, #000);
}

.hero h1 {
  font-size: 2.6rem;
  color: var(--primary);
}

.hero p {
  max-width: 700px;
  margin: 15px auto 30px;
  color: var(--text-muted);
  font-size: 1.2rem;
}

/* ======================================================
   BOTÕES
====================================================== */
.btn {
  display: inline-block;
  padding: 14px 30px;
  background: linear-gradient(45deg, var(--primary), #ffb347);
  color: #000;
  font-weight: bold;
  border-radius: 40px;
  text-decoration: none;
  transition: .3s;
}

.btn:hover {
  transform: scale(1.05);
  background: linear-gradient(45deg, #ffb347, var(--primary));
}

/* ======================================================
   SEÇÕES
====================================================== */
section {
  padding: 70px 20px;
  max-width: 1200px;
  margin: auto;
}

section h2 {
  text-align: center;
  color: var(--primary);
  font-size: 2.2rem;
  margin-bottom: 40px;
}

/* ======================================================
   GRID / CARDS
====================================================== */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
  gap: 30px;
}

.card {
  background: var(--card);
  padding: 25px;
  border-radius: var(--radius);
  box-shadow: 0 6px 18px rgba(0,0,0,.6);
  transition: .3s;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,.8);
}

/* ======================================================
   PRODUTOS
====================================================== */
.produto-card {
  text-align: center;
}

.produto-card img {
  width: 200px;
  height: 200px;
  object-fit: contain;
  background: #f4f4f4;
  padding: 12px;
  border-radius: 50%;
  margin-bottom: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,.6);
}

.produto-card h3 {
  color: var(--primary);
  margin-bottom: 8px;
}

.produto-card p {
  color: var(--text-muted);
  font-size: .95rem;
}

.btn-comprar {
  margin-top: 15px;
  display: inline-block;
  padding: 12px 26px;
  background: linear-gradient(45deg, var(--primary), #ffb347);
  color: #000;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  transition: .3s;
}

.btn-comprar:hover {
  transform: scale(1.07);
}

/* ======================================================
   DESTAQUE / NOTÍCIA
====================================================== */
.destaque {
  background: var(--bg-soft);
  border-radius: var(--radius);
}

.destaque-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px,1fr));
  gap: 40px;
  align-items: center;
}

.destaque-img {
  width: 100%;
  border-radius: var(--radius);
}

.texto-resumo {
  font-weight: bold;
  margin-bottom: 10px;
}

.texto-completo {
  display: none;
  color: var(--text-muted);
}

.texto-completo.expandido {
  display: block;
}

.leia-mais {
  margin-top: 15px;
  padding: 10px 22px;
  border-radius: 30px;
  border: none;
  background: var(--primary);
  font-weight: bold;
  cursor: pointer;
}

/* ======================================================
   VÍDEOS
====================================================== */
.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
  gap: 25px;
}

.video-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 15px;
  transition: .3s;
}

.video-card:hover {
  transform: scale(1.03);
}

.video-thumb,
iframe {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 10px;
}

/* ======================================================
   INTERAÇÃO SOCIAL
====================================================== */
.interacao {
  display: flex;
  justify-content: space-around;
  margin-top: 12px;
}

.interacao button {
  background: none;
  border: none;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
}

.interacao button:hover {
  color: var(--primary);
}

.comentarios {
  display: none;
  margin-top: 10px;
}

.lista-comentarios li {
  background: #222;
  padding: 6px 10px;
  border-radius: 8px;
  margin-bottom: 5px;
  font-size: 14px;
}

/* ======================================================
   FOOTER
====================================================== */
footer {
  text-align: center;
  padding: 30px 20px;
  border-top: 2px solid var(--primary);
  color: #aaa;
  margin-top: 60px;
}

/* ==============================
   MODO EDITORIAL – REPORTAGENS
================================ */

body.layout-editorial {
  background: #f8f8f8;
  color: #111;
}

.layout-editorial main {
  padding-top: 80px; /* espaço do header fixo */
}

.layout-editorial .editorial-container {
  max-width: 760px;
  margin: auto;
  padding: 32px 20px;
}

.layout-editorial h1,
.layout-editorial h2,
.layout-editorial h3 {
  font-family: 'Inter', sans-serif;
}

.layout-editorial p {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  line-height: 1.75;
}


/* ======================================================
   BOTÃO TOPO
====================================================== */
#voltar-topo {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: var(--primary);
  color: #000;
  border: none;
  padding: 12px 16px;
  border-radius: 50%;
  display: none;
  cursor: pointer;
}

