* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background: #111;
  color: #fff;
  line-height: 1.6;
}

header {
  background: #FFD700;
  color: #000;
  padding: 30px 20px;
  text-align: center;
}

header h1 {
  font-size: 2.5em;
}

section {
  padding: 50px 20px;
  text-align: center;
}

.cta {
  background: #222;
}

.cta h2,
.planos h2,
.resultados h2,
.depoimentos h2,
.metodologia h2,
.grupo h2,
.terminal h2 {
  font-size: 2em;
  color: #FFD700;
  margin-bottom: 20px;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.6);
}

.cta p {
  margin-bottom: 20px;
  font-size: 1.1em;
}

.cta a,
.sobre-autor a,
.plano a,
.depoimentos a,
.terminal a,
.grupo a {
  background: #FFD700;
  color: #000;
  padding: 14px 28px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 6px;
  display: inline-block;
  transition: 0.3s ease;
  position: relative;
  overflow: hidden;
}

.cta a::after,
.sobre-autor a::after,
.plano a::after,
.depoimentos a::after,
.terminal a::after,
.grupo a::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: rgba(255,255,255,0.3);
  transform: skewX(-20deg);
  transition: 0.5s;
}

.cta a:hover::after,
.sobre-autor a:hover::after,
.plano a:hover::after,
.depoimentos a:hover::after,
.terminal a:hover::after,
.grupo a:hover::after {
  left: 125%;
}

.cta a:hover,
.sobre-autor a:hover,
.plano a:hover,
.depoimentos a:hover,
.terminal a:hover,
.grupo a:hover {
  background: #e6c200;
}

.planos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.plano {
  background: #1a1a1a;
  border: 2px solid #FFD700;
  border-radius: 12px;
  padding: 25px;
  width: 100%;
  max-width: 320px;
  margin: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.plano:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
}

.plano h3 {
  color: #FFD700;
  font-size: 1.4em;
  margin-bottom: 10px;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.6);
}

.plano ul {
  list-style: none;
  text-align: left;
  margin: 15px 0;
  padding: 0;
}

.plano ul li {
  margin-bottom: 8px;
}

.plano ul li::before {
  content: "✔️";
  margin-right: 8px;
  color: #FFD700;
}

.depoimento {
  background: #1a1a1a;
  border: 2px solid #FFD700;
  border-radius: 12px;
  padding: 25px;
  width: 100%;
  max-width: 700px;
  margin: 20px auto;
  font-style: italic;
  font-size: 1.1em;
}

/* Terminal */
.terminal {
  background: #111;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  padding: 60px 20px;
  text-align: center;
  border-top: 3px solid #FFD700;
}

.swiper-button-next,
.swiper-button-prev {
  color: #fff;
  z-index: 10;
}

.swiper-container {
  position: relative;
  overflow: visible;
}

.terminal h2 {
  font-size: 32px;
  font-weight: 700;
  color: #FFD700;
  margin-bottom: 10px;
}

.terminal p {
  font-size: 18px;
  color: #ccc;
  margin-bottom: 40px;
}

.terminal .swiper-container {
  max-width: 800px;
  margin: 0 auto 40px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.15);
}

.terminal .swiper-slide img {
  width: 100%;
  border-radius: 0;
  transition: transform 0.3s ease;
}

.terminal .swiper-slide:hover img {
  transform: scale(1.03);
}

.terminal .swiper-button-next,
.terminal .swiper-button-prev {
  color: #fff;
  font-size: 40px;
  background-color: #FFD700;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  top: 50%;
  transform: translateY(-50%);
  box-shadow: 0 0 12px rgba(255, 215, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
  transition: transform 0.3s ease;
  animation: pulse 2s infinite;
}

.terminal .swiper-button-next::after,
.terminal .swiper-button-prev::after {
  font-size: 30px;
  font-weight: bold;
  color: #000;
}

.terminal .swiper-pagination-bullet {
  background: #FFD700;
  opacity: 1;
  transform: scale(1.2);
}

.terminal .swiper-pagination-bullet-active {
  background: #fff;
  opacity: 1;
}

@keyframes pulse {
  0% { transform: scale(1); box-shadow: 0 0 12px rgba(255, 215, 0, 0.6); }
  50% { transform: scale(1.1); box-shadow: 0 0 18px rgba(255, 215, 0, 1); }
  100% { transform: scale(1); box-shadow: 0 0 12px rgba(255, 215, 0, 0.6); }
}

iframe {
  width: 100%;
  height: 600px;
  border: none;
  background-color: transparent;
  display: block;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.1);
}

/* RESPONSIVO */
@media (max-width: 768px) {
  header h1 { font-size: 1.8em; }
  .cta h2,
  .planos h2,
  .resultados h2,
  .depoimentos h2,
  .metodologia h2,
  .grupo h2,
  .terminal h2 {
    font-size: 1.5em;
  }
  section { padding: 30px 15px; }
  .plano { width: 100%; margin: 15px 0; }
  .cta p, .depoimento { font-size: 1em; }
  iframe { height: 500px; }
}

@media (max-width: 480px) {
  iframe { height: 450px; }
}

/* SOBRE AUTOR */
.sobre-autor {
  background: #1a1a1a;
  padding: 50px 20px;
  color: #fff;
}

.container-sobre {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
  gap: 30px;
}

.img-autor img {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  border: 3px solid #FFD700;
  object-fit: cover;
}

.texto-autor {
  max-width: 600px;
  text-align: left;
}

.texto-autor h2 {
  font-size: 2em;
  color: #FFD700;
  margin-bottom: 15px;
}

.texto-autor p {
  font-size: 1.1em;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .container-sobre { flex-direction: column; text-align: center; }
  .texto-autor { text-align: center; }
  .img-autor img { width: 180px; height: 180px; }
}

/* VÍDEO APRESENTAÇÃO */
.apresentacao-video {
  background: #1a1a1a;
  padding: 40px 20px;
}

.container-video {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
}

.video-autor video {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 4px solid #FFD700;
  object-fit: cover;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.texto-video {
  max-width: 500px;
  color: #fff;
  text-align: left;
}

.texto-video h2 {
  color: #FFD700;
  font-size: 1.8em;
  margin-bottom: 10px;
}

.texto-video p {
  font-size: 1.1em;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .container-video { flex-direction: column; text-align: center; }
  .texto-video { text-align: center; }
  .video-autor video { width: 180px; height: 180px; }
}

/* PORTAL BENEFÍCIOS */
.portal-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 32px;
  padding: 20px;
  max-width: 1200px;
  margin: auto;
}

.portal-text, .portal-benefits {
  flex: 1 1 400px;
  min-width: 300px;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.portal-text h2 {
  font-weight: 700;
  font-size: 28px;
  margin-bottom: 16px;
  color: #FFD700;
  display: flex;
  align-items: center;
  gap: 8px;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.6);
}

.portal-text p {
  font-size: 16px;
  margin-bottom: 16px;
  line-height: 1.6;
  color: #f1f1f1;
}

.portal-benefits {
  background: linear-gradient(135deg, #fffbe6, #f0fff4);
  border-left: 5px solid #00c47c;
  color: #0a6847;
  font-weight: 600;
  padding: 24px;
  border-radius: 12px;
  font-size: 17px;
  box-shadow: 0 4px 12px rgba(0, 196, 124, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.portal-benefits:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 18px rgba(0, 196, 124, 0.25);
}

@media (max-width: 768px) {
  .portal-container { flex-direction: column; padding: 16px; }
  .portal-text h2, .portal-text p, .portal-benefits { text-align: center; }
}

