/* Box sizing */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Fonte */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #f0f2f5;
  color: #111;
}

/* WhatsApp flutuante */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25d366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
  z-index: 999;
  text-decoration: none;
  transition: background 0.3s;
}
.whatsapp-float:hover {
  background: #1ebe5d;
}

/* HERO */
.hero {
  background: linear-gradient(200deg, #14006C, #2F00FF);
  background-size: 800% 800%;
  color: #fff;
  padding: 40px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
/* Compactar header e alinhar conteúdo */
.hero {
  padding: 40px 20px; /* menos espaço vertical */
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}

.hero-top {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.hero-top .logo {
  max-height: 70px; /* diminuir altura da logo */
  align-items: left;
}

.hero h1 {
  text-align: left;
  margin-bottom: 15px;
  font-size: 1.8em;
}

.hero p {
  text-align: left;
  max-width: 600px;
}

.hero .selos {
  justify-content: flex-start;
}

.hero .sub-call {
  text-align: left;
}

/* Alinhar botão e formulário à esquerda */
.form-hero {
  text-align: left;
}

/* Responsivo: centralizar no mobile */
@media (max-width: 768px) {
  .hero-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .hero h1,
  .hero p,
  .hero .sub-call,
  .hero .selos,
  .form-hero {
    text-align: center;
  }
  .hero .selos {
    justify-content: center;
  }
}

/* Formulário Hero */
.form-hero {
  background: #00e9af00;
  padding: 20px;
  border-radius: 10px;
  display: grid;
  gap: 15px;
  margin-top: 8px;
}
.form-hero label {
  text-align: left;
  color: #ffffff;
  font-weight: 600;
}
.form-hero select,
.form-hero input {
  padding: 14px;
  border: 3px solid #00CC66;
  border-radius: 8px;
  font-size: 15px;
  font-family: 'Poppins', sans-serif;
  
}
.form-hero button {
  background: #00CC66;
  color: #fff;
  padding: 14px;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 19px;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  transition: background 0.3s;
  margin-top: 15px;
}
.form-hero button:hover {
  background: #3750dd;
}

/* Seções */
section {
  padding: 60px 20px;
}

/* Sobre */
.sobre {
  background: #fff;
}
.sobre .container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
  gap: 40px;
  align-items: center;
}
.sobre img {
  width: 100%;
  max-width: 500px;
  border-radius: 10px;
  padding: 20px 20px 20px 20px;
}
.sobre .text {
  flex: 1;
}
.sobre h2 {
  font-size: 26px;
  color: #060a0f;
  margin-top: 0;
}
.sobre p {
  font-size: 16px;
  margin-bottom: 20px;
}
.sobre ul {
  list-style: none;
  padding: 0;
}
.sobre li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.sobre li i {
  color: #00CC66;
  margin-right: 8px;
}
.sobre .cta-secondary {
  display: inline-block;
  margin-top: 20px;
  background: #00CC66;
  color: #fff;
  padding: 12px 24px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
}
.sobre .cta-secondary:hover {
  background: #122d5a;
}

/* Diferenciais */
.diferenciais {
  background: linear-gradient(135deg, #0a0035, #122d5a);
  color: #fff;
  text-align: center;
}
.diferenciais h2 {
  font-size: 26px;
  margin-top: 0;
}
.diferenciais .cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}
.diferenciais .card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 30px 20px;
  width: 260px;
}
.diferenciais .card i {
  font-size: 32px;
  color: #00CC66;
  margin-bottom: 15px;
}
.diferenciais .card h3 {
  font-size: 20px;
  margin: 0 0 10px;
}
.diferenciais .card p {
  font-size: 14px;
}
.diferenciais .cta-secondary {
  display: inline-block;
  margin-top: 30px;
  background: #00CC66;
  color: #fff;
  padding: 12px 24px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
}
.diferenciais .cta-secondary:hover {
  background: #00CC66;
}

/* Depoimentos */
.depoimentos {
  background: #fff;
  text-align: center;
}
.depoimentos h2 {
  font-size: 26px;
  color: #0a1f40;
}
.depoimentos .testimonials {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}
.depoimentos .testimonial {
  background: #f7f9fc;
  border-radius: 10px;
  padding: 20px;
  max-width: 300px;
  font-size: 15px;
}
.depoimentos .testimonial strong {
  display: block;
  margin-top: 10px;
  font-weight: 600;
  color: #0a1f40;
}
.depoimentos .cta-secondary {
  display: inline-block;
  margin-top: 30px;
  background: #00CC66;
  color: #fff;
  padding: 12px 24px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
}
.depoimentos .cta-secondary:hover {
  background: #122d5a;
}

/* Formulário Seção */
.form-section {
  background: #f7f9fc;
}
.form-section .container {
  max-width: 600px;
  margin: auto;
  text-align: center;
}
.form-section h2 {
  font-size: 24px;
  color: #0a1f40;
}
.form-section p {
  font-size: 15px;
  margin-bottom: 20px;
}
.form-section form {
  display: grid;
  gap: 15px;
}
.form-section label {
  text-align: left;
  font-weight: 600;
}
.form-section select,
.form-section input {
  width: 100%;
  padding: 14px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 15px;
}
.form-section button {
  background: #00CC66;
  color: #fff;
  padding: 14px;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s;
  margin-top: 30px;
}
.form-section button:hover {
  background: #369a6b;
}

/* CTA Final */
.cta-final {
  background: #0a1f40;
  color: #fff;
  text-align: center;
}
.cta-final h2 {
  font-size: 24px;
  margin: 0 0 10px;
}
.cta-final p {
  font-size: 15px;
}
.cta-final .cta-whatsapp {
  display: inline-block;
  margin-top: 20px;
  background: #00CC66;
  color: #fff;
  padding: 12px 24px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
}
.cta-final .cta-whatsapp:hover {
  background: #369a6b;
}

/* Footer */
.footer {
  text-align: center;
  font-size: 13px;
  color: #666;
  padding: 20px;
}
.footer a {
  color: #0a1f40;
  text-decoration: none;
}
.footer a:hover {
  text-decoration: underline;
}

/* Responsivo */
@media (max-width: 768px) {
  .sobre .container,
  .diferenciais .cards,
  .depoimentos .testimonials {
    flex-direction: column;
    align-items: center;
  }
}

.hero .selos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin: 20px 0;
}
.hero .selo {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 6px;
  padding: 10px 16px;
  color: #fff;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero .selo i {
  color: #43b581;
  font-size: 16px;
}

.faixa-trabalhos {
  background: #ffffff;
  overflow: hidden;
  padding: 10px 0;
  font-size: 16px;
}
.marquee {
  display: flex;
  width: 100%;
  overflow: hidden;
  position: relative;
}
.marquee-content {
  display: flex;
  animation: scroll-left 40s linear infinite;
}
.marquee-content .selo-trabalho {
  display: inline-block;
  background: #c9c9c9;
  color: #000000;
  font-size: 14px;
  padding: 6px 12px;
  margin: 0 8px;
  border-radius: 20px;
  white-space: nowrap;
  border: 1px solid rgba(255,255,255,0.2);
}
@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

#tipoTrabalho {
  color: #03023a;
  font-weight: 600;
}

#cursor {
  color: #03023a;
  font-weight: 600;
  animation: blink 1s infinite;
}

@keyframes blink {
  0% { opacity: 1; }
  50% { opacity: 0; }
  100% { opacity: 1; }
}

.slider-provas {
  background: linear-gradient(135deg, #0a0035, #2b0b75);
  color: #fff;
  padding: 10px 20px 60px 20px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

.slider-provas h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.slider-provas p {
  font-size: 16px;
  margin-bottom: 70px !important;
  max-width: 700px;
  margin: auto;
}

.swiper {
  padding-top: 20px;
  padding-bottom: 40px;
}

.swiper-slide {
  background: #fff;
  color: #333;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 12px rgba(0,0,0,0.3);
  text-align: center;
  transition: transform 0.3s ease;
}

.swiper-slide:hover {
  transform: scale(1.03);
}

.swiper-slide img {
  width: 100%;
  display: block;
}

.avaliacao {
  padding: 10px;
  background: #f0f0f0;
  font-size: 15px;
}

.niveis-academicos {
  background: #29008a;
  color: #fff;
  padding: 60px 20px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

.niveis-academicos h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.niveis-academicos p {
  font-size: 16px;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.niveis-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

.nivel {
  background: #fff;
  color: #333;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 0 12px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}

.nivel:hover {
  transform: translateY(-5px);
}

.nivel i {
  font-size: 36px;
  color: #00CC66; /* verde */
  margin-bottom: 15px;
}

.nivel h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.nivel p {
  font-size: 14px;
}

.selo-preco {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #00CC66; /* verde */
  color: #fff;
  padding: 8px 18px;
  border-radius: 25px;
  font-size: 15px;
  font-weight: 500;
  margin: 0 auto 25px auto;
  box-shadow: 0 0 10px #00CC66, 0 0 20px #00CC66;
  animation: brilho 3s infinite alternate;
}

.selo-preco i {
  margin-right: 8px;
  font-size: 16px;
}

@keyframes brilho {
  0% {
    box-shadow: 0 0 10px #00CC66, 0 0 20px #00CC66;
  }
  100% {
    box-shadow: 0 0 20px #00CC66, 0 0 40px #00CC66;
  }
}

.hero-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px; /* Espaço entre logo e selo */
}

.logo {
  max-width: 250px;
  height: auto;
  display: block;
}

.hero-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
}

.hero-left {
  flex: 1 1 50%;
  min-width: 320px;
}

.hero-right {
  flex: 1 1 40%;
  min-width: 300px;
}

.hero-right img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.sobre-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
}

.sobre-grid .text {
  flex: 1 1 50%;
  min-width: 320px;
}

.sobre-grid .video {
  flex: 1 1 45%;
  min-width: 300px;
}

.sobre-grid .video iframe {
  width: 420px;
  height: 315px;
  border-radius: 10px;
}

.destaque {
  color: #00ff88; /* Exemplo: laranja destaque */
  font-weight: 700; /* Negrito */
}

.instituicoes {
  padding: 60px 20px;
  text-align: center;
  background-color: #ffffff;
}

.instituicoes h2 {
  font-size: 26px;
  margin-bottom: 10px;
}

.instituicoes p {
  color: #7c7c7c;
  margin-bottom: 30px;
}

.logos-instituicoes {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  align-items: center;
}

.logos-instituicoes img {
  max-height: 60px;
  max-width: 180px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.8;
  transition: all 0.3s ease;
}

.logos-instituicoes img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

.como-funciona-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.section-title {
  font-size: 2.2em;
  color: #05153d;
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 1.1em;
  color: #555;
  margin-bottom: 40px;
}

.etapas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.etapa-box {
  background: #fff;
  flex: 1 1 220px;
  max-width: 260px;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: all 0.3s ease;
}

.etapa-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.etapa-icon {
  font-size: 2.5em;
  color: #00CC66;
  margin-bottom: 15px;
}

.etapa-title {
  font-size: 1.1em;
  color: #05153d;
  margin-bottom: 10px;
}

.etapa-desc {
  font-size: 0.95em;
  color: #555;
}

/* Responsivo */
@media (max-width: 768px) {
  .etapas-grid {
    flex-direction: column;
    align-items: center;
  }

  .etapa-box {
    width: 100%;
    max-width: 100%;
  }
}

