@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Epilogue:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  background-image: url("../images/LP-V2.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  min-height: 100vh;
  width: 100vw;
  overflow-x: hidden;
  background-color: black;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  min-height: 100vh;
}

header {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

header img {
  width: 100%;
}

.container-texto {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  gap: 16px;
}

.container-texto h1 {
  color: #fff;
  text-align: center;
  font-family: Poppins;
  font-size: 25px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  white-space: nowrap;
}

.titulo{
  font-size: 28px;
}

.container-texto span {
  color: #00c7f6;
  font-weight: bold;
}

.container-texto p {
  color: #fff;
  font-family: Epilogue;
  font-size: 18px;
  font-style: normal;
  line-height: normal;
  letter-spacing: -1px;
  font-weight: 200;
}

.cta {
  margin-top: 2rem;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cta a {
  display: flex;
  width: 70%;
  padding: 1rem 0;
  justify-content: center;
  align-items: center;
  gap: 18px;
  border-radius: 10px;
  border: 2px solid #fff;
  background: linear-gradient(90deg, #3fa0b7 0%, #00cafa 100%);
  color: #fff;
  text-align: center;
  font-family: Inter;
  font-size: 20px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  letter-spacing: 0.2px;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 0 0 0 #00cafa;
  animation: pulse-btn 1.2s infinite;
  transition: box-shadow 0.3s;
}

@keyframes pulse-btn {
  0% {
    box-shadow: 0 0 0 0 #00cafa80;
  }
  70% {
    box-shadow: 0 0 0 12px #00cafa00;
  }
  100% {
    box-shadow: 0 0 0 0 #00cafa00;
  }
}
.cta a img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.container-aluno {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 16px;
  text-align: center;
}

.container-aluno p {
  color: #fff;
  font-family: Epilogue;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -1px;
}

.container-aluno span {
  color: #00cafa;
}

.container-aluno h4 {
  color: #fff;
  text-align: center;
  font-family: Epilogue;
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  letter-spacing: 1px;
  margin: 20px 0;
}

.container-aluno h4 strong {
  color: #00cafa;
  font-weight: bold;
}

.certificados {
  margin: 20px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 25px;
  text-align: center;
}

.certificados img {
  max-width: 20%;
  height: auto;
  border-radius: 10px;
}

.certificados p {
  color: #00cafa;
  text-align: center;
  font-family: Epilogue;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -1.8px;
}

.certificados ul {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 12px;
}

.certificados li {
  color: #00cafa;
  font-family: Epilogue;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0.5px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-shadow: 0 0 1px #00cafa, 0 0 2px #00cafa;
  animation: pulse-glow 1.5s infinite;
}

@keyframes pulse-glow {
  0% {
    text-shadow: 0 0 1px #00cafa, 0 0 2px #00cafa;
  }
  50% {
    text-shadow: 0 0 3px #00cafa, 0 0 6px #00cafa;
  }
  100% {
    text-shadow: 0 0 1px #00cafa, 0 0 2px #00cafa;
  }
}

.certificados li img {
  max-width: 15px;
  margin-right: 2px;
  height: auto;
  object-fit: contain;
}

.certificados span {
  color: #fff;
  text-align: center;
  font-family: Epilogue;
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  letter-spacing: -1px;
}

.container-geral {
  position: absolute;
  top: 25%;
  left: 50%;
  transform: translateX(-50%);
  padding: 0;
  margin: 0;
  width: 100%;
}
