/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
}
html {
  scroll-behavior: smooth;
}

/* BASE */
body {
  background: #0e0e0e;
  color: #ffffff;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 70px 20px;
}

h1, h2, h3, h4 {
  font-weight: 800;
  text-transform: uppercase;
}

h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 40px;
}

p {
  color: #cfcfcf;
}

/* BOTÃO */
.btn {
  display: inline-block;
  padding: 14px 30px;
  background: linear-gradient(135deg, #ff0000, #b30000);
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  margin-top: 20px;
  transition: 0.3s ease;
  margin-left: 20px;
}

.btn:hover {
  transform: scale(1.05);
  background: linear-gradient(135deg, #ff1a1a, #ff0000);
}

/* HERO */
.hero {
  background: linear-gradient(180deg, #000000, #000000);
  text-align: center;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero span {
  color: #ff0000;
}

.hero p {
  font-size: 1.1rem;
}

.hero .logo-samuel {
  max-width: 500px;
  display: block;
  margin: 0 auto ;
  border-radius: 12px;
}

/* OBJETIVOS */
.goals {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}
.video-goal {
  width: 400px;
  margin: 15px auto;
  border-radius: 12px;
  display: block;
  transition: 0.4s ease;
  
}
.video-goal:hover {
   transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(255, 0, 0, 0.25);
}
.goal-card {
  background: #151515;
  border-radius: 16px;
  padding: 30px 20px;
  text-align: center;
  font-size: 1.05rem;
  
}



.goal-card .logo {
  max-width: 110px;
  display: block;
  margin: 0 auto 20px;
  border-radius: 8px;
}

/* SOBRE */
.about {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  background: #121212;
  border-radius: 20px;
  padding: 50px;
  
}
.about .about-text {
  flex: 1;
}

.about strong {
  display: block;
  color: #ff0000;
}
.about-images {
  display: flex;
  gap: 20px;
  margin-top: 40px;
} 
.about-images .samuel {
  
  max-width: 200px;
  border-radius: 15px;
  margin: 0 auto;
 transition: ease-in-out 0.3s;
}
.about-images .samuel:hover {
  transform: scale(1.05);
}




/* metodo */
.benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
}

.benefit {
  background: #151515;
  padding: 30px;
  border-radius: 14px;
  text-align: center;
  font-weight: 600;
  transition: 0.3s ease;
}

.benefit:hover {
  background: #1b1b1b;
  transform: scale(1.05);
}
.benefit .beneficios {
  max-width: 200px;
  margin-bottom: 15px;
  margin: 0 auto;
  border-radius: 8px;
  display: block;
}
.benefit h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  margin-top: 10px;
}
.benefit .benificios-text {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  text-align: left;
}

/* PLANOS */
.plans {
  margin-top: 50px;
}
 .divisor-treino{
  border: 1px solid #ff0000;
  margin: 10px auto;
  border-radius: 20px;
 }
.divisor-combo{
  border: 1px solid #00ff99;
  margin: 10px auto;
  border-radius: 20px;
}
.divisor-dieta{
  border: 1px solid #8a8a8a;
  margin: 10px auto;
  border-radius: 20px;
}

.plan-group {
  margin-bottom: 80px;
}

.plan-group h3 {
  text-align: center;
  font-size: 1.6rem;
  margin-bottom: 25px;
}
.plan-description {
  text-align: left;
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 40px;
  color: #bbbbbb;
}

.plan-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.plan {
  background: #151515;
  border-radius: 20px;
  padding: 35px 25px;
  text-align: center;
  border: 2px solid transparent;
  transition: 0.4s ease;
}

.plan:hover {
  transform: translateY(-10px) scale(1.03);
  border-color: #ff0000;
}

.plan h4 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}
.parcelas {
  font-size: 1.2rem;
  font-weight: 600;
  color: #ffffff;
}
.price {
  font-size: 2rem;
  font-weight: 800;
  color: #ff0000;
  margin-bottom: 10px;
  
}
.price-row {
 display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px; /* espaço entre eles */
}
.price-about {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ff0000;
}
.price-about1 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ff0000;
  
}
.fake-price {
  font-size: 1.1rem;
  font-weight: 600;
  color: #838383;
  text-decoration: line-through;
}
.real-price {
  font-size: 1.1rem;
  font-weight: 600;
  color: #00ff99;
  
}

.off {
  color: #00ff99;
  font-weight: bold;
  margin-bottom: 10px;
}

.plan.highlight {
  border-color: #ff0000;
  box-shadow: 0 0 30px rgba(255, 0, 0, 0.35);
}

/* FOOTER */
footer {
  background: #000;
  text-align: center;
  padding: 60px 20px;
  color: #aaaaaa;
  font-size: 1rem;
}
.icons {
  display: flex;
  gap: 20px;          /* espaço entre os ícones */
  justify-content: center; /* centraliza */
  align-items: center;
  margin-top: 20px;
  
}

.icons .whatsapp,
.icons .instagram {
  width: 40px;
  height: 40px;
  transition: transform 0.3s ease;
  margin-bottom: 40px;
  background-color: #9b9b9b;
  padding: 5px;
  border-radius: 40px;
}
.icons .whatsapp:hover,
.icons .instagram:hover {
  transform: scale(1.1);
  background-color: #ff0000;
}

/* =========================
   MOBILE (CELULAR)
========================= */
@media (max-width: 768px) {

  /* HERO */
  .hero {
    padding: 60px 20px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero .logo-samuel {
    max-width: 260px;
    margin-bottom: 20px;
  }

  /* BOTÕES */
  .btn {
    width: 100%;
    margin-left: 0;
    text-align: center;
  }

  /* OBJETIVOS */
  .goals {
    grid-template-columns: 1fr;
  }

  /* SOBRE */
  .about {
    padding: 30px 20px;
  }

  .about-images {
    flex-direction: column;
    align-items: center;
  }

  .about-images .samuel {
    width: 90%;
    max-width: 280px;
  }

  /* BENEFÍCIOS */
  .benefits {
    grid-template-columns: 1fr;
  }

  .benefit {
    font-size: 1rem;
  }

  /* PLANOS */
  .plan-cards {
    grid-template-columns: 1fr;
  }

  .plan {
    padding: 30px 20px;
  }

  .price {
    font-size: 1.8rem;
  }

  /* ÍCONES */
  .icons {
    gap: 15px;
  }

  .icons .whatsapp,
  .icons .instagram {
    width: 36px;
    height: 36px;
  }

  /* FOOTER */
  footer {
    padding: 40px 20px;
    font-size: 0.95rem;
  }
}

