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

body {
  font-family: 'Rubik', sans-serif;
  line-height: 1.6;
  background-color: #000;
  color: #fff;
  overflow-x: hidden;
}

/* === HEADER E LOGO === */
header {
  background-color: #000;
  padding: 15px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

header img {
  max-width: 180px;
  border-radius: 10px;
  margin-bottom: 15px;
}

/* === MENU MOBILE-FIRST === */
nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 8px 0;
}

nav a {
  display: block;
  color: #fa8a01;
  background: transparent;
  border: 2px solid #fa8a01;
  border-radius: 6px;
  padding: 10px 20px;
  font-weight: bold;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
  transition: all 0.3s ease, transform 0.2s ease;
}

nav a:hover {
  background: #fa8a01;
  color: #000;
  box-shadow: 0 0 10px #fa8a01, 0 0 20px #fa8a01;
  transform: translateY(-2px);
}

/* === TABLET === */
@media (min-width: 600px) {
  nav {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }

  nav a {
    font-size: 16px;
    padding: 12px 24px;
    margin: 5px;
  }
}

/* === DESKTOP === */
@media (min-width: 768px) {
  header {
    flex-direction: row;
    justify-content: space-between;
  }

  header img {
    margin-bottom: 0;
  }

  nav {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }

  nav a {
    font-size: 18px;
    padding: 14px 28px;
  }
}

/* === MAIN === */
main {
  padding: 20px;
  width: 100%;
  max-width: 1000px;
  margin: auto;
}

/* === SECTIONS === */
section {
  margin: 40px auto;
  max-width: 1000px;
  padding: 20px;
  border-radius: 8px;
  background-color: #111;
}

section h2 {
  color: #fa8a01;
  margin-bottom: 20px;
}

section p {
  color: #ddd;
}

/* === FOOTER === */
footer {
  background-color: #000;
  color: #fa8a01;
  text-align: center;
  padding: 20px;
}

footer a {
  color: #fa8a01;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* === BOTÃO VOLTAR === */
#voltar-topo {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #fa8a01;
  color: #000;
  border: none;
  padding: 10px 14px;
  border-radius: 50px;
  font-size: 16px;
  display: none;
  cursor: pointer;
  z-index: 1000;
}

#voltar-topo:hover {
  background-color: #ffb347;
}

/* === LOJAS SECTION === */
.lojas-section {
  margin: 40px auto;
  padding: 30px 20px;
  background-color: #111;
  border: 2px solid #fa8a01;
  border-radius: 12px;
  text-align: center;
  max-width: 900px;
}

.lojas-section h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.btn-loja {
  display: inline-block;
  margin: 10px 15px;
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-loja.mercado-livre {
  background: #ffe600;
  color: #000;
}

.btn-loja.hotmart,
.btn-loja.amazon {
  background: #ff5722;
  color: #fff;
}

.btn-loja:hover {
  transform: scale(1.05);
  box-shadow: 0 0 8px #fa8a01;
}

/* === BUSCA === */
.container-busca {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 800px;
  margin: 30px auto;
  background: #000;
  padding: 20px 30px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(250, 126, 1, 0.1);
}

.container-busca h2 {
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: bold;
}

.barra-de-busca {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 10px;
  padding: 10px 15px;
  width: 100%;
  max-width: 700px;
  margin-bottom: 15px;
}

.barra-de-busca i {
  color: #fa8a01;
  margin-right: 10px;
}

.barra-de-busca input {
  flex: 1;
  border: none;
  font-size: 18px;
  outline: none;
  background: transparent;
}

#resultados {
  list-style: none;
  width: 100%;
  max-width: 700px;
  margin: 0 0 20px 0;
  padding: 0;
}

#resultados li {
  padding: 12px 15px;
  margin-bottom: 8px;
  background: #111;
  color: #fff;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s;
}

#resultados li:hover {
  background: #222;
}

#detalhes {
  background: #f9f9f9;
  color: #000;
  padding: 30px 20px;
  border-radius: 10px;
  max-width: 700px;
  margin: 20px auto;
}

.perfil-profissional {
  text-align: center;
}

.perfil-profissional img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #fa8a01;
  margin-bottom: 15px;
}

.perfil-profissional h3 {
  margin-bottom: 10px;
  font-size: 22px;
  color: #000;
}

.perfil-profissional p {
  margin: 6px 0;
  font-size: 16px;
}

.perfil-profissional .cupom {
  background: #fa8a01;
  color: #fff;
  padding: 12px 18px;
  border-radius: 8px;
  font-weight: bold;
  display: inline-block;
  margin-top: 20px;
}

/* === ACADEMIA CARD === */
.academia-card {
  background: #111;
  border: 2px solid #fa8a01;
  border-radius: 12px;
  padding: 20px;
  margin: 30px auto;
  max-width: 500px;
  text-align: center;
  box-shadow: 0 0 10px rgba(250, 138, 1, 0.2);
}

.academia-card img {
  max-width: 180px;
  margin-bottom: 15px;
  border-radius: 8px;
}

.academia-card h3 {
  color: #fa8a01;
  margin-bottom: 10px;
}

.academia-card p {
  color: #ccc;
}

.botao-link, .academia-card .btn {
  margin-top: 15px;
  display: inline-block;
  background: #fa8a01;
  color: #000;
  padding: 10px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s, transform 0.2s;
}

.botao-link:hover, .academia-card .btn:hover {
  background: #fff;
  color: #000;
  transform: scale(1.05);
}

/* === EMAIL COMUNIDADE === */
.email-comunidade {
  text-align: center;
  padding: 2rem 1rem;
  background: #000;
  border-top: 2px solid #fa8a01;
  border-bottom: 2px solid #fa8a01;
  margin: 2rem auto;
}

.email-comunidade h2 {
  font-size: 1.6rem;
  color: #fa8a01;
  margin-bottom: 0.5rem;
}

.email-comunidade p {
  color: #f5f5f5;
  margin-bottom: 1rem;
}

.btn-email {
  background: #fa8a01;
  color: #000;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  transition: background 0.3s, transform 0.2s;
}

.btn-email:hover {
  background: #fff;
  color: #000;
  transform: scale(1.05);
  box-shadow: 0 0 10px #fa8a01;
}

#ebook a {
  display: inline-block;
  background: #fa8a01;
  color: #000;
  padding: 10px 25px;  /* padding menor */
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  font-size: 1rem; /* fonte menor */
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(250, 138, 1, 0.4);
}

#ebook a:hover {
  background: #fff;
  color: #000;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(250, 138, 1, 0.5);
}

.btn-ver-todas {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 20px;
  background-color: transparent;
  color: #ffa500;
  font-weight: bold;
  text-decoration: none;
  border: 2px solid #ffa500;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-ver-todas:hover {
  background-color: #ffa500;
  color: #000;
  font-weight: bold;
}

.texto-completo {
  display: none;
  margin-top: 10px;
  color: #ddd;
  line-height: 1.5;
}

.texto-resumo {
  color: #fff;
  line-height: 1.5;
}

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

.leia-mais {
  margin-top: 10px;
  background-color: #ff6600;
  color: #fff;
  border: none;
  padding: 8px 15px;
  cursor: pointer;
  border-radius: 4px;
  font-weight: 700;
  font-family: 'Rubik', sans-serif;
  transition: background-color 0.3s ease;
}

.leia-mais:hover {
  background-color: #e65c00;
}
.completo {
  display: none;
}

.completo.expandido {
  display: block;
}
.noticia-destaque img {
  max-width: 100%;   /* para que a imagem não ultrapasse o tamanho do container */
  height: auto;      /* mantém a proporção */
  max-height: 300px; /* limita a altura para no máximo 300px, ajuste como preferir */
  display: block;
  margin: 1em 0;     /* espaçamento em cima e embaixo */
  object-fit: cover; /* opcional: mantém a imagem preenchida no espaço definido */
}

.destaque-enzo {
  margin-top: 2.5em;
  margin-bottom: 2.5em;
  font-weight: 600; /* opcional, deixa o texto um pouco mais destacado */
  background-color: #020202; /* opcional, um fundo claro para destacar */
  padding: 1em;
  border-left: 4px solid #f90; /* opcional, uma borda colorida para destacar */
  border-radius: 4px;
}
.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
  background: #000;
  margin: 1em 0;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.produtos-section {
  padding: 40px 20px;
  text-align: center;
  background-color: #111;
  color: #fff;
}

.produtos-section h1 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.produtos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.produto-card {
  background: #1a1a1a;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 0 10px rgba(255, 102, 0, 0.2);
  transition: transform 0.3s ease;
}

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

.produto-card img {
  max-width: 100%;
  border-radius: 12px;
  margin-bottom: 15px;
}

.produto-card h2 {
  font-size: 1.2rem;
  color: #ffa500;
  margin: 10px 0;
}

.btn-comprar {
  display: inline-block;
  padding: 10px 16px;
  margin-top: 10px;
  background: #ff6600;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background 0.3s;
}

.btn-comprar:hover {
  background: #ff3300;
  font-weight: 700;
}
/* Botão Voltar ao Início */
.voltar-inicio {
  text-align: center;
  margin: 40px 0;
}

.btn-voltar {
  background-color: #ff6600;
  color: #fff;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.btn-voltar:hover {
  background-color: #ff3300;
  font-weight: 700;
}

/* Cor laranja para destaques */
.laranja {
  color: #ffa500;
}

.podio {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin: 2rem 0;
}

.produto-card {
  background-color: #111;
  color: #fff;
  padding: 1rem;
  border-radius: 12px;
  width: 280px;
  box-shadow: 0 0 10px rgba(250, 138, 1, 0.4);
  text-align: center;
  transition: transform 0.3s;
}

.produto-card img {
  width: 1000px;
  height: 100px;
  object-fit: contain;
  margin: 0.5rem auto;
}

.produto-card h3 {
  font-size: 1rem;
  color: #fa8a01;
}

.produto-card h4 {
  font-size: 1.1rem;
  margin-top: 0.5rem;
}

.produto-card.primeiro {
  background-color: #fa8a01;
  color: #000;
  transform: scale(1.05);
}

.produto-card.primeiro h3 {
  color: #000;
}

.produto-card a.btn-comprar {
  display: inline-block;
  margin-top: 0.8rem;
  padding: 0.4rem 1rem;
  background-color: #fff;
  color: #000;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: 0.3s ease;
}

.produto-card a.btn-comprar:hover {
  background-color: #fa8a01;
  color: #fff;
}

.noticia-destaque img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  object-fit: contain; /* ou remova se estiver */
  max-width: 100%;
}

.compartilhar {
  margin-top: 20px;
  font-size: 14px;
  color: #ccc;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.btn-share {
  background-color: #222;
  color: #ffa500;
  padding: 6px 12px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

.btn-share:hover {
  background-color: #ffa500;
  color: #000;
}

.btn-share.instagram {
  background-color: #fa8602;
  color: white;
}

.btn-share.instagram:hover {
  background-color: #ff9501;
}

.produto-card img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 50%; /* Deixa a imagem redonda */
  border: 4px solid #e0e0e0; /* Opcional: borda leve para destacar */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Sombra leve */
  margin-bottom: 10px;
  transition: transform 0.3s ease;
}

.produto-card img:hover {
  transform: scale(1.05); /* Efeito sutil ao passar o mouse */
}