* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  font-family: "Montserrat", sans-serif;
}

html {
  scroll-behavior: smooth;
}

html, body {
  background-color: #0f0f1e;
  color: #fff;
  overflow-x: hidden; 
  padding-top: 0;
  max-width: 100vw; 
}

section{
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

#one{
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 70vh;
  width: 100%;
  position: relative;
  margin-top: 77px; 
  background-image: url('../assets/fundo.png');
  padding-bottom: 100px;
}

.linha-colorida {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg,#054b2a,#00f7ff,#20f390,#7bf1b0);
  animation: gradient-move 5s linear infinite;
  z-index: 2000;
}



header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 18px 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  background: rgba(9, 80, 47, 0.25);;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 247, 255, 0.2);
  box-shadow: 0 4px 18px #00f7ff1a;
  transition: background 0.3s ease, padding 0.3s ease;
}

.Name {
  font-family: "Orbitron", sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  background: linear-gradient(90deg, #20f390, #00f7ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 15px rgba(0, 247, 255, 0.5);
}

header nav ul {
  display: flex;
  gap: 40px;
}

header nav ul li {
  cursor: pointer;
  position: relative;
  padding: 5px 0;
}

header nav ul li a {
  text-decoration: none;
  font-weight: 600;
  color: #d1e7ff;
  transition: color 0.3s ease, text-shadow 0.3s ease;
  position: relative;
}

header nav ul li a:hover {
  color:#00f7ff;
  text-shadow: 0 0 8px rgba(0, 247, 255, 0.6);
}

header nav ul li::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background-color: #00f7ff;
  transition: width 0.3s ease;
}

header nav ul li:hover::after {
  width: 100%;
}

#home {
  text-align: left;
  margin-left: 15%;
  padding: 0;
  font-size: 150%;
  color: ghostwhite;
  margin-right: 50%;
}

.Info {
  display: inline-block;
  padding: 16px 40px;
  font-size: 18px;
  font-weight: 700;
  font-family: "Orbitron", sans-serif;
  color:#00f7ff;
  background: transparent;
  border: 2px solid #00f7ff;
  border-radius: 50px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  margin-top: 40px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  box-shadow: 0 0 12px rgba(0, 247, 255, 0.4);
  text-decoration: none;
}

.Info::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent,#00f7ff, transparent);
  transition: all 0.6s ease;
}

.Info:hover::before {
  left: 100%;
}

.Info:hover {
  background: #00f7ff;
  color: #0f0f1e;
  box-shadow: 0 0 30px #62c8cc, 0 0 60px#00f7ff;
  transform: translateY(-3px) scale(1.07);
}

.img-canto-direito {
  position: absolute;
  top: 45%;                   
  right: 3%;                  
  transform: translateY(-50%);
  width: clamp(180px, 28vw, 360px); 
  height: auto;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 247, 255, 0.2);
  object-fit: cover;
  z-index: 2;
  max-width: 23%;
  padding: 5px;
  background: linear-gradient(135deg,#245b41 50%, #4b9837 100%);
  object-fit: cover;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.img-canto-direito2 {
  position: absolute;
  top: 47%;                   
  left: 53%;                  
  transform: translateY(-50%);
  width: clamp(180px, 28vw, 360px); 
  height: auto;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 247, 255, 0.2);
  object-fit: cover;
  z-index: 2;
  max-width: 19%;
  padding: 5px;
  background: linear-gradient(135deg,#245b41 50%, #4b9837 100%);
  object-fit: cover;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.img-canto-direito:hover,
.img-canto-direito2:hover,
.img-canto-direito4:hover {
  box-shadow: 0 0 12px rgba(0, 247, 255, 0.3);
  filter: saturate(1.1);
  transition: all 0.5s ease-in-out;
}

#two {
  background: linear-gradient(135deg,#054b2a 0%, #1f1f3f 100%);
  display: flex;
  flex-direction: column; 
  justify-content: center; 
  align-items: center;     
  padding: 40px 20px;
}


h3 {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #d1e7ff;
  background: rgba(0, 247, 255, 0.06);
  border-left: 4px solid #00f7ff;
  border-radius: 12px;
  box-shadow: 0 0 12px rgba(0, 247, 255, 0.2);
  padding: 20px 25px;
  margin: 20px auto;
  backdrop-filter: blur(8px);
  animation: fade-in 0.8s ease forwards;

  max-width: 900px; 
  text-align: justify;
  word-wrap: break-word;
}

h2 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 2.5rem;
  color: ghostwhite;
  font-weight: 700;
  background: linear-gradient(90deg,#00f7ff,#20f390);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 3px rgba(0, 247, 255, 0.5);
}

h4{
  text-align: center;
  padding: 60px 0 20px 0;
  font-size: 220%;
  color: ghostwhite;
  font-weight: 600;
  margin: 0 auto;
  width: fit-content;
  font-weight: 700;
  background: linear-gradient(90deg,#00f7ff,#20f390);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 3px rgba(0, 247, 255, 0.5);
}

h5, .subtitulo {
  text-align: center;
  padding: 80px 0 20px 0;
  font-size: 180%;
  color: ghostwhite;
  font-weight: 600;
  margin: 0 auto;
  width: fit-content;
  font-weight: 700;
  background: linear-gradient(90deg,#00f7ff,#20f390);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 3px rgba(0, 247, 255, 0.5);
  max-width: 900px;
}

#four {
  background: linear-gradient(135deg,#054b2a 0%, #1f1f3f 100%);
  display: flex;
  flex-direction: column; 
  justify-content: center; 
  align-items: center;     
  padding: 40px 20px;
}


.beneficios, .objetivos{
  font-size: 1.1rem;
  font-weight: 700;
  color: ghostwhite;
  line-height: 1.8;
  list-style: none;
  padding: 20px;
  margin: 20px auto;
  max-width: 800px;
  background: rgba(0, 247, 255, 0.06);
  border-left: 4px solid #00f7ff;
  border-radius: 12px;
  box-shadow: 0 0 12px rgba(0, 247, 255, 0.2);
  backdrop-filter: blur(8px);
  animation: fade-in 0.8s ease forwards;
}

@keyframes fade-in {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.beneficios li, .materiais li, .objetivos li {
  font-size: 1.2rem;
  color: #d1e7ff;
  margin: 10px 0;
  position: relative;
  padding-left: 30px;
}

.beneficios li::before,
.materiais li::before,
.objetivos li::before {
  content: "✔";
  color: #00f7ff;
  font-weight: bold;
  position: absolute;
  left: 0;
}


#five{
  background: linear-gradient(135deg,#054b2a 0%, #1f1f3f 100%);
  display: flex;
  flex-direction: column; 
  justify-content: flex-start;   
  align-items: flex-start;       
  padding: 60px 80px;
  position: relative;
}

.subtitulo {
  text-align: left;              
  margin-bottom: 10px;
  font-size: 200%;
  margin-top: 5px;
}

.objetivos {
  text-align: left;
  margin-left: 0;
  margin-right: auto;
  margin-bottom: auto;
  font-size: 20%;
  max-width: 50%;
  max-height: 68%;
  
}

.objetivos li:first-child {
  background: none;
  border: none;
  box-shadow: none;
  padding-left: 0;
  margin: 15px 0;
  font-weight: 600;
  color: ghostwhite;
}

.objetivos li:first-child::before{
  content: none;
}

.img-canto-direito3 {
  position: absolute;
  top: 58%;                   
  right: 15%;                  
  transform: translateY(-50%);
  width: clamp(160px, 22vw, 320px);
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  z-index: 1;
  opacity: 0.95;
  width: clamp(100px, 22vw, 450px);

}



#six{
  background: linear-gradient(135deg,#054b2a 0%, #1f1f3f 100%);
  display: flex;
  flex-direction: column; 
  justify-content: center; 
  align-items: center;     
  padding: 40px 20px;
}

.alunos{
 text-align: center;
  padding: 60px 0 20px 0;
  font-size: 220%;
  color: ghostwhite;
  font-weight: 600;
  margin: 0 auto;
  width: fit-content;
}

footer{
  background-color: #0f0f1e;
  text-align: center;
  padding: 20px 10px;
  font-size: 14px;
  color:#aaa;
  border-top: 1px solid rgba(0, 247, 255,);
}

.img-canto-direito4 {
  position: absolute;
  top: 275%;                   
  right: 15%;                  
  width: clamp(100px, 22vw, 450px);
   transform: translateY(-50%);
  width: clamp(180px, 28vw, 360px); 
  height: auto;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 247, 255, 0.2);
  object-fit: cover;
  z-index: 2;
  max-width: 22%;
  padding: 5px;
  background: linear-gradient(135deg,#245b41 50%, #4b9837 100%);
  object-fit: cover;
  transition: transform 0.4s ease, box-shadow 0.4s ease;

}


.materiais{
  font-size: 1.1rem;
  font-weight: 700;
  color: ghostwhite;
  line-height: 1.8;
  list-style: none;
  padding: 20px;
  margin: 20px auto;
  max-width: 800px;
  background: rgba(0, 247, 255, 0.06);
  border-left: 4px solid #00f7ff;
  border-radius: 12px;
  box-shadow: 0 0 12px rgba(0, 247, 255, 0.2);
  backdrop-filter: blur(8px);
  animation: fade-in 0.8s ease forwards;
   text-align: left;
  margin-left: 0;
  
}