* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  background-color: #000;
  color: #fff;
  scroll-behavior: smooth;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(0,0,0,0.9);
  border-bottom: 1px solid #222;
  z-index: 100;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.logo {
  color: #fff;
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: bold;
}

.btn-nav {
  background: linear-gradient(180deg, #9c62f6, #ff74e8);
  color: #000;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  transition: 0.3s;
  font-weight: 600;
}

.btn-nav:hover {
  opacity: 0.85;
}

.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
  overflow: hidden;
  color: #fff;
}

/* imagem de fundo com overlay escuro */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("imagens/DSC09442.jpg"); /* 👈 caminho correto */
  background-size: cover;
  background-position: center;
  transition: transform 4s ease, filter 0.8s ease;
  transform: scale(1);
  filter: brightness(45%); /* escurece a imagem */
  z-index: 0;
}

/* zoom suave e leve clareamento no hover */
.hero:hover::before {
  transform: scale(1.08);
  filter: brightness(60%);
}

/* conteúdo sobre a imagem */
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}


.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  color: #ccc;
}


.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  color: #ccc;
}

.btn-hero {
  background: linear-gradient(180deg, #9c62f6, #ff74e8);
  color: #000;
  padding: 16px 36px;
  border-radius: 30px;
  font-size: 1.1rem;
  text-decoration: none;
  transition: 0.3s;
  font-weight: bold;
}

.btn-hero:hover {
  opacity: 0.85;
}

.sobre {
  padding: 100px 0;
  background-color: #0a0a0a;
  text-align: center;
}

.sobre h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.sobre p {
  font-size: 1.1rem;
  color: #aaa;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
}

.episodios {
  padding: 100px 0;
  background-color: #000;
  text-align: center;
}

.episodios h2 {
  font-size: 2.2rem;
  margin-bottom: 50px;
}

.episodios-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.episodio-card {
  position: relative;
  background-color: #111;
  border-radius: 15px;
  padding: 25px;
  text-align: left;
  transition: 0.3s;
  border: 1px solid #222;
  overflow: hidden;
}

.episodio-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 15px;
  padding: 1px;
  background: linear-gradient(180deg, #9c62f6, #ff74e8);
  -webkit-mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.episodio-card:hover::before {
  opacity: 1;
}

.episodio-card:hover {
  transform: translateY(-5px);
}

.thumb {
  width: 100%;
  height: 180px;
  background-color: #333;
  border-radius: 10px;
  margin-bottom: 20px;
}

.episodio-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.episodio-card p {
  color: #aaa;
  margin-bottom: 20px;
}

.btn-episodio {
  background: linear-gradient(180deg, #9c62f6, #ff74e8);
  color: #000;
  border: none;
  padding: 10px 25px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.btn-episodio:hover {
  opacity: 0.85;
}

.cta-final {
  padding: 120px 0;
  text-align: center;
  background: #0a0a0a;
}

.cta-final h2 {
  font-size: 2rem;
  margin-bottom: 40px;
}

.botoes-plataformas {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-plataforma {
  background: linear-gradient(180deg, #9c62f6, #ff74e8);
  color: #000;
  text-decoration: none;
  padding: 14px 30px;
  border-radius: 30px;
  font-weight: 600;
  transition: 0.3s;
}

.btn-plataforma:hover {
  opacity: 0.85;
}

footer {
  background-color: #000;
  border-top: 1px solid #222;
  text-align: center;
  padding: 40px 0;
}

footer p {
  color: #777;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .episodios-grid {
    grid-template-columns: 1fr;
  }
}

.producao {
  background: linear-gradient(180deg, #000 0%, #0a0a0a 100%);
  padding: 120px 0;
  color: #fff;
}

.producao-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
}

.producao-texto {
  flex: 1 1 450px;
}

.producao-texto h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  line-height: 1.3;
}

.producao-texto p {
  color: #ccc;
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 15px;
}

.btn-tm7 {
  display: inline-block;
  background: linear-gradient(180deg, #9c62f6, #ff74e8);
  color: #000;
  padding: 16px 36px;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s ease;
  animation: bounce 2s infinite ease-in-out;
}

.btn-tm7:hover {
  opacity: 0.85;
}

@keyframes bounce {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.09);
  }
}


.producao-imagens {
  flex: 1 1 500px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* imagem principal */
.img-principal img {
  width: 100%;
  aspect-ratio: 16 / 9; /* mesmo tamanho do quadrado cinza anterior */
  border-radius: 10px;
  object-fit: cover; /* mantém a imagem centralizada e sem distorcer */
  display: block;
}

/* miniaturas da galeria */
.img-galeria {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 15px;
}

.img-galeria img {
  width: 100%;
  aspect-ratio: 1 / 1; /* mantém o formato quadrado */
  border-radius: 10px;
  object-fit: cover;
  display: block;
}



@media (max-width: 900px) {
  .producao-content {
    flex-direction: column;
    text-align: center;
  }

  .producao-imagens {
    width: 100%;
  }

  .btn-tm7 {
    margin-top: 20px;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

.precos {
  background-color: #111;
  padding: 100px 20px;
  text-align: center;
  color: #fff;
}

.titulo-precos {
  font-size: 36px;
  margin-bottom: 60px;
  background: linear-gradient(45deg, #8f3cfb, #ff00b3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}

.cards-precos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.card-preco {
  background-color: #1c1c1c;
  border-radius: 20px;
  padding: 40px 25px;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(143, 60, 251, 0.1);
  text-align: left;
  width: 300px;
}

.card-preco:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 25px rgba(143, 60, 251, 0.4);
}

.card-preco h3 {
  font-size: 22px;
  margin-bottom: 10px;
  background: linear-gradient(45deg, #8f3cfb, #ff00b3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.card-preco p {
  font-size: 15px;
  color: #ccc;
  margin-bottom: 20px;
  min-height: 50px;
}

.card-preco .preco {
  display: block;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #fff;
}

.card-preco ul {
  list-style: none;
  color: #aaa;
  font-size: 14px;
  line-height: 1.6;
}

.card-preco ul li {
  margin-bottom: 8px;
}

.destaque {
  position: relative;
  background-color: #1c1c1c;
  border-radius: 20px;
  padding: 40px 25px;
  overflow: hidden;
}

.destaque::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 2px; /* ← controla a espessura da borda */
  background: linear-gradient(45deg, #8f3cfb, #ff00b3);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}


.segunda-linha {
  justify-content: center;
  margin-top: 50px;
}

/* ---------- SEÇÃO DE BENEFÍCIOS ---------- */
.beneficios {
  background-color: #0d0d0d;
  padding: 120px 20px;
  text-align: center;
  color: #fff;
}

.titulo-beneficios {
  font-size: 36px;
  margin-bottom: 70px;
  background: linear-gradient(45deg, #8f3cfb, #ff00b3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}

.cards-beneficios {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* centraliza tudo, inclusive a última linha */
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.beneficio {
  background-color: #1a1a1a;
  border-radius: 20px;
  padding: 40px 30px;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px rgba(143, 60, 251, 0.1);
  width: 320px; 
}


.beneficio:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 25px rgba(143, 60, 251, 0.4);
}

.beneficio .icone {
  font-size: 40px;
  margin-bottom: 20px;
  background: linear-gradient(45deg, #8f3cfb, #ff00b3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.beneficio h3 {
  font-size: 20px;
  margin-bottom: 10px;
  background: linear-gradient(45deg, #8f3cfb, #ff00b3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

.beneficio p {
  font-size: 15px;
  color: #ccc;
  line-height: 1.6;
}

/* ---------- BOTÃO WHATSAPP (SEÇÃO DE ORÇAMENTO) ---------- */

.orcamento-whatsapp {
  text-align: center;
  margin-top: 80px;
}


.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: #25D366; /* verde WhatsApp */
  color: #fff;
  font-weight: 700;
  padding: 18px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px rgba(37, 211, 102, 0.4);
  position: relative;
  animation: pulse 1.8s infinite ease-in-out; /* efeito pulsante */
}

.btn-whatsapp:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(37, 211, 102, 0.7);
}

.icon-whatsapp {
  width: 24px;
  height: 24px;
  filter: invert(1); /* deixa o ícone branco */
}


.orcamento-whatsapp-2 {
  text-align: center;
  margin-top: 35px;

}


.btn-whatsapp-2 {
  display: inline-flex;
  /* align-items: flex-start;  -> só se necessário */
  justify-content: center;
  gap: 10px;
  background-color: #25D366;
  color: #fff;
  font-weight: 700;
  padding: 18px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px rgba(37, 211, 102, 0.4);
  position: relative;
  animation: pulse 1.8s infinite ease-in-out;
}


/* Animação pulsante suave */
@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 15px rgba(37, 211, 102, 0.4);
  }
  50% {
    transform: scale(1.06);
    box-shadow: 0 0 35px rgba(37, 211, 102, 0.6);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 15px rgba(37, 211, 102, 0.4);
  }
}

/* Navbar com logo + texto alinhados */
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;              /* espaço entre ícone e texto */
  text-decoration: none;
  color: inherit;         /* mantém a cor do seu tema */
  font-weight: 700;
}

/* tamanho base do logo */
.navbar { --logo-size: 44px; }          /* teste 56–80px até gostar */

.logo-img {
  height: var(--logo-size);             /* controla pela ALTURA */
  width: auto;                          /* mantém proporção */
  display: block;
  object-fit: contain;
}

/* opcional: reduzir em telas menores */
@media (max-width: 640px) {
  .navbar { --logo-size: 48px; }
}



/* ===== SOBRE (layout 2 colunas) ===== */
.sobre {
  padding: 64px 0;
}

.sobre-wrap {
  display: grid;
  grid-template-columns: 1.05fr 1fr; /* imagem um pouquinho maior */
  gap: 36px;
  align-items: center;
}

/* imagem */
.sobre-media {
  margin: 0;
}
.sobre-media img {
  width: 100%;
  height: 100%;
  max-height: 460px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}

/* texto */
.sobre-content h2 {
  margin: 0 0 16px;
  line-height: 1.15;
}
.sobre-content p {
  margin: 0;
  line-height: 1.7;
}

/* responsivo */
@media (max-width: 960px) {
  .sobre-wrap {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .sobre-media img {
    max-height: 360px;
  }
}
