@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

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

:root {
  --preto: #191c1f;
  --preto-2: #080808;
  --branco: #ffffff;
  --laranja: #ff8e07;
  --verde: #1dff00;
  --verde-2: #6affb9;
  --cinza-claro: #f2f6f8;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Montserrat", sans-serif;
}
a.cta-button {
  color: #080808;
  background-color: #1dff00;
  font-weight: 500;
  font-size: 1.5rem;
  box-shadow: 3px 3px 1px #6affb9;
  max-width: fit-content;
  padding: 20px;
  text-decoration: none;
  border-radius: 25px;
}
a.cta-button:hover {
  background-color: #6affb9;
  box-shadow: 3px 3px 1px #1dff00;
  transition: 0.5s;
}
h2 {
  font-size: 1.8rem;
  color: gold;
  text-shadow: 1px 2px 1px black;
}
p strong {
  color: blueviolet;
  text-shadow: 1px 2px 1px black;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 20px;
  gap: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero {
  background-color: var(--preto-2);
  color: var(--branco);
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  justify-content: space-between;
  text-align: center;
}
.hero .container {
  padding-top: 20px;
  padding-bottom: 20px;
  flex-direction: column;
}
.container h1 {
  font-size: 46px;
  line-height: 0.9;
  color: gold;
}
.container p {
  font-size: 20px;
}
.container h2 {
  font-size: 36px;
}
.autor {
  display: flex;
  flex-direction: column;
}
.autor h2 {
  text-align: center;
  margin: 20px auto;
  text-transform: uppercase;
  color: black;
  text-shadow: 1px 2px 1px gold;
}
.autor .container {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}
.autor .container .autor-img img {
  max-width: 100%;
  border-radius: 20px;
}
.autor-text {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.autor-text p {
  font-size: 15px;
}
.sobre .container {
  display: flex;
}
.sobre .container img {
  max-width: 600px;
  width: 100%;
}
.sobre-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.protocolo {
  background-color: #191c1f;
  color: #f2f6f8;
  padding-bottom: 30px;
}
.protocolo-header {
  background-color: blueviolet;
  color: var(--branco);
}
.protocolo-header h2 {
  color: gold;
}
.h-text {
  max-width: 1100px;
  margin: 0 auto;
  padding: 30px 0;
  margin-top: 30px;
  margin-bottom: 30px;
}
.h-text h2 {
  font-size: 45px;
}
.h-text p {
  font-size: 20px;
}
.protocolo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 100%;
  gap: 1.6rem;
}
.grid-img {
  width: 340px;
}
.grid-img img {
  width: 100%;
}
.protocolo-footer {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.protocolo-footer p:nth-child(1) {
  font-size: 35px;
}
.protocolo-footer p {
  text-align: center;
  font-size: 25px;
  font-weight: bold;
}
.protocolo .container {
  display: flex;
  flex-direction: column;
}
.bonus .container {
  display: flex;
  flex-direction: column;
}
.bonus-content {
  display: flex;
  gap: 3rem;
  justify-content: space-between;
}
.bonus-img img {
  max-width: 333px;
}
.bonus-img {
  position: relative;
  display: inline-block;
}

.bonus-img {
  position: relative;
  display: inline-block;
  overflow: hidden; /* impede o brilho de “vazar” */
}

.bonus-img img {
  border-radius: 16px;
  z-index: 2;
  position: relative;
  width: 100%;
  height: auto;
}

/* brilho atrás da imagem */
.bonus-img::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle,
    rgba(154, 22, 206, 0.8) 30%,
    rgba(155, 89, 182, 0.1) 70%,
    transparent 100%
  );
  transform: translate(-50%, -50%);
  border-radius: 20px;
  z-index: 1;
  animation: pulsarBrilho 2.5s ease-in-out infinite;
  filter: blur(20px);
}

/* animação */
@keyframes pulsarBrilho {
  0% {
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(1);
    filter: blur(18px);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.05);
    filter: blur(25px);
  }
  100% {
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(1);
    filter: blur(18px);
  }
}

/* ajustes no mobile */
@media (max-width: 768px) {
  .bonus-img::before {
    width: 100%;
    height: 100%;
    filter: blur(12px);
    animation: pulsarBrilhoMobile 2.5s ease-in-out infinite;
  }

  @keyframes pulsarBrilhoMobile {
    0% {
      opacity: 0.5;
      transform: translate(-50%, -50%) scale(1);
      filter: blur(10px);
    }
    50% {
      opacity: 0.9;
      transform: translate(-50%, -50%) scale(1.02);
      filter: blur(14px);
    }
    100% {
      opacity: 0.5;
      transform: translate(-50%, -50%) scale(1);
      filter: blur(10px);
    }
  }
}

.bonus-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 20px;
}
.bonus-text strong {
  font-size: 28px;
  color: blueviolet;
}
.bonus-text #strong {
  text-shadow: none;
}
.bonus-footer {
  text-align: center;
}
.bonus-footer #total {
  font-size: 2rem;
  color: #1dff00;
  text-shadow: 1px 3px 1px black;
}
.bonus-footer p strong {
  font-size: 1.9rem;
}
.bonus-text h3 {
  font-size: 30px;
}
.bonus-text p {
  font-size: 20px;
}
.bonus-text p:last-child {
  font-size: 30px;
}
.bonus-text p span {
  text-decoration: line-through;
  color: var(--laranja);
}
.bonus-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.bonus-footer h3 {
  font-size: 2.4rem;
  text-shadow: 1px 3px 1px #191c1f;
  color: blueviolet;
}
.checkout {
  display: flex;
  flex-direction: column;
  background-color: blueviolet;
  color: #f2f6f8;
  padding-bottom: 40px;
  padding-top: 40px;
}
.checkout .container {
  display: flex;
  flex-direction: row;
}
.checkout-text {
  color: #f2f6f8;
  font-weight: 700;
  text-transform: uppercase;
  flex: 1;
  justify-content: space-between;
  gap: 1rem;
  display: flex;
  flex-direction: column;
}
.checkout-text p {
  font-size: 1.5rem;
}
.payment-box {
  background-color: #080808;
  padding: 20px;
  width: 500px;
  border-bottom-left-radius: 20px;
  border-top-right-radius: 20px;
  box-shadow: 3px 3px 1px #6affb9;
}
.payment-checkout {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: #f2f6f8;
  gap: 1rem;
}
.payment-checkout h3 {
  font-size: 2.5rem;
}
.payment-checkout p {
  color: #1dff00;
}
.payment-checkout span {
  font-size: 2.4rem;
}
.payment-checkout strong {
  color: #1dff00;
}
.payment-checkout img {
  width: 200px;
}
.payment-checkout .cta-button {
  color: #080808;
  background-color: #1dff00;
  font-weight: 500;
  font-size: 1.5rem;
  box-shadow: 3px 3px 1px #6affb9;
}
.payment-checkout .cta-button:hover {
  background-color: #6affb9;
  box-shadow: 3px 3px 1px #1dff00;
  transition: 0.5s;
}

.modulos {
  display: flex;
  flex-direction: column;
  padding-top: 30px;
  padding-bottom: 20px;
}
.modulos h2 {
  margin: 20px auto;
  font-size: 3rem;
}
.modulos .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
}
.modulos h2 {
  display: flex;
  align-items: center;
  width: 100%;
  text-align: center;
  line-height: 1;
  font-size: 2rem;
}
.modulo-item {
  background-color: var(--preto-2);
  color: var(--cinza-claro);
  padding: 10px;
  text-align: left;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 1rem;
  border-radius: 15px;
  box-shadow: 1px 3px 1px gold;
}

.modulo-item h3 {
  color: gold;
  text-transform: uppercase;
}
.modulo-item ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.modulo-item ul li {
  display: flex;
  gap: 10px;
  align-items: center;
  line-height: 1;
}
.modulo-item ul li svg {
  max-width: 32px;
  width: fit-content;
  fill: gold;
}
.modulo .flex-reverse {
  flex-direction: row-reverse;
}
.diploma {
  display: flex;
  flex-direction: column;
  background-color: var(--preto);
  color: var(--branco);
}

.diploma h2 {
  color: gold;
}
.diploma strong {
  color: #6affb9;
}
.diploma .cta-button {
  background-color: #1dff00;
  font-weight: 700;
  margin-bottom: 30px;
  padding: 15px 2%;
}
.diploma .container {
  display: flex;
  flex-direction: row;
}
.diploma .container img {
  max-width: 400px;
}
.diploma-footer {
  display: flex;
  flex-direction: column;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  align-items: center;
  gap: 1rem;
  padding-top: 10px;
  padding-left: 10px;
  padding-right: 10px;
}
.feedbacks {
  background-color: #080808;
}
.feedbacks .container {
  display: flex;
  flex-direction: column;
  background-color: #080808;
}
.feedbacks-text {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.feedbacks-text h3 {
  font-size: 1.8rem;
  line-height: 1;
  color: blueviolet;
}
.feedbacks-text p {
  color: #f2f6f8;
}
.feedback-footer {
  max-width: 100%;
}
.feedback-footer img {
  width: 100%;
}
.entrevista {
  display: flex;
  flex-direction: column;
  background-color: #080808;
  color: #f2f6f8;
  padding-top: 30px;
  padding-bottom: 30px;
}
.entrevista .container {
  display: flex;
}
.entrevista-img-box {
  flex: 1;
  text-align: center;
  font-size: 1.5rem;
}
.entrevista-img {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.entrevista-img h3 {
  color: gold;
}
.entrevista-img img {
  max-width: 333px;
  border-radius: 20px;
}

/* ======== ESTILO GERAL ======== */
.faq-section {
  max-width: 900px;
  margin: 80px auto;
  padding: 0 20px;
  font-family: "Poppins", sans-serif;
}

.faq-section h2 {
  text-align: center;
  font-size: 2rem;
  color: #2c2c2c;
  margin-bottom: 40px;
}

.faq-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ======== ITENS ======== */
.faq-item {
  border: 1px solid #e3e3e3;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.open {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

/* ======== PERGUNTA ======== */
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 18px 20px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 20px;
  font-size: 1.4rem;
  color: #7a4de7;
  transition: transform 0.3s;
}

.faq-item.open .faq-question::after {
  content: "-";
  transform: rotate(180deg);
}

.faq-question:hover {
  background: #f9f9f9;
}

/* ======== RESPOSTA ======== */
.faq-answer {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  padding: 0 20px;
  color: #555;
  line-height: 1.6;
  transition: all 0.4s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  opacity: 1;
  padding: 10px 20px 20px;
}
footer {
  background-color: #080808;
  color: #f2f6f8;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  gap: 1.3rem;
}
footer img {
  max-width: 100%;
  width: 333px;
}

/* ======== RESPONSIVIDADE ======== */
@media (max-width: 600px) {
  .faq-section h2 {
    font-size: 1.6rem;
  }

  .faq-question {
    font-size: 1rem;
    padding: 16px;
  }

  .faq-answer {
    font-size: 0.95rem;
  }
}
@media screen and (max-width: 1020px) {
  section {
    max-width: 100%;
  }
  .container {
    max-width: 100%;
    padding: 15px;
    flex-direction: column;
  }
  .container h1 {
    font-size: 2rem;
  }
  .container h2 {
    font-size: 1.8rem;
  }
  .container iframe {
    max-width: 100%;
  }
  .sobre {
    display: flex;
    flex-direction: column;
    max-width: 100%;
  }
  .protocolo-header {
    padding: 15px;
  }
  .protocolo-header h2 {
    font-size: 1.8rem;
    color: gold;
    font-weight: 700;
  }
  .protocolo-header p {
    font-size: 1.2rem;
  }
  .protocolo-grid {
    display: flex;
    flex-wrap: wrap;
    max-width: 100%;
    gap: 1.6rem;
  }
  .grid-img {
    width: 340px;
  }
  .grid-img img {
    width: 100%;
  }
  .bonus-content {
    flex-direction: column;
  }
  .bonus-footer {
    max-width: 100%;
  }
  .bonus-footer img {
    max-width: 100%;
  }
  .bonus-img {
    align-items: center;
    display: flex;
    flex-direction: column;
  }
  .bonus-img img {
    max-width: 80%;
  }
  .checkout .container {
    flex-direction: column;
  }
  .checkout .payment-box {
    max-width: fit-content;
  }
  .modulos .container {
    display: flex;
    flex-direction: column;
  }
  .diploma .container {
    flex-direction: column;
  }
  .diploma .container img {
    max-width: 100%;
  }
}
