body {
  font-family: 'Montserrat', Arial, sans-serif;
  margin: 0;
  background: #f8f8f8;
  color: #222;
}

.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(90deg, #0057b8 60%, #0057b8 100%);
  padding: 48px 0 0 0;
  min-height: 420px;
  position: relative;
}
.hero-content {
  flex: 1;
  padding: 0 0 0 8vw;
  color: #fff;
  max-width: 600px;
}
.hero-logo {
  height: 56px;
  margin-bottom: 24px;
}
.hero-content h2 {
  font-size: 1.2em;
  font-weight: 500;
  margin: 0 0 8px 0;
}
.hero-content h1 {
  font-size: 2.4em;
  font-weight: 800;
  margin: 0 0 16px 0;
}
.hero-content h1 span {
  color: #ffd600;
}
.hero-content p {
  font-size: 1.1em;
  margin-bottom: 24px;
}
.hero-link {
  color: #ffd600;
  text-decoration: underline;
  font-weight: 600;
}
.btn-cta {
  background: #2ecc71;
  color: #fff;
  font-weight: bold;
  padding: 16px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.1em;
  box-shadow: 0 2px 8px #0002;
  transition: background 0.2s;
  display: inline-block;
}
.btn-cta:hover {
  background: #27ae60;
}
.hero-img {
  flex: 1;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  min-width: 340px;
  margin-right: 6vw;
}
.hero-img img {
  max-width: 380px;
  width: 100%;
  border-radius: 0 0 32px 32px;
  box-shadow: 0 8px 32px #0002;
}

.beneficios-home {
  background: #ffd600;
  padding: 56px 0 32px 0;
  text-align: center;
}
.beneficios-home h2 {
  font-size: 2em;
  font-weight: 800;
  margin-bottom: 32px;
  color: #222;
}
.beneficios-lista-home {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.beneficio-card-home {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px #0001;
  padding: 32px 24px 24px 24px;
  width: 320px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.beneficio-card-home img {
  width: 48px;
  margin-bottom: 16px;
}
.beneficio-card-home h3 {
  color: #0057b8;
  font-size: 1.1em;
  font-weight: 700;
  margin-bottom: 12px;
}
.beneficio-card-home p {
  color: #444;
  font-size: 1em;
}

.cursos-home {
  background: #fff;
  padding: 56px 0 56px 0;
  text-align: center;
}
.cursos-home h2 {
  font-size: 2em;
  font-weight: 800;
  margin-bottom: 40px;
  color: #0057b8;
}
.cursos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}
.curso-card-home {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 2px 16px #0002;
  text-decoration: none;
  min-height: 400px;
  transition: transform 0.15s;
  display: flex;
  align-items: flex-end;
}
.curso-card-home:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 8px 32px #0003;
}
.curso-card-home img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}
.curso-overlay {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 32px 16px 20px 16px;
  background: linear-gradient(to right, #0057b8, #002b5c);
  color: #fff;
  text-align: left;
}
.curso-overlay h3 {
  font-size: 1.1em;
  font-weight: 700;
  margin: 0 0 8px 0;
  color: #fff;
}
.curso-overlay p {
  font-size: 1em;
  margin: 0;
  color: #ffd600;
}
.curso-overlay span {
  color: #fff;
  font-weight: 400;
}

footer {
  background: #002b5c;
  color: #fff;
  text-align: center;
  padding: 40px 8vw 16px 8vw;
}

.footer-logo {
  margin-bottom: 24px;
}

.footer-logo img {
  height: 48px;
}

.footer-social {
  margin: 16px 0;
}

.footer-social a {
  display: inline-block;
  margin: 0 10px;
}

.footer-social a img {
  width: 32px;
  transition: opacity 0.2s;
}

.footer-social a:hover img {
  opacity: 0.8;
}

footer p {
  margin: 8px 0;
  font-size: 0.9em;
  color: #fff;
}

footer a {
  color: #ffd600;
  text-decoration: none;
  transition: opacity 0.2s;
}

footer a:hover {
  opacity: 0.8;
}

@media (max-width: 1100px) {
  .cursos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    padding: 32px 0 0 0;
    min-height: unset;
  }
  .hero-content {
    padding: 0 24px;
    max-width: 100%;
  }
  .hero-img {
    margin: 0;
    justify-content: center;
  }
  .cursos-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}
@media (max-width: 600px) {
  .beneficios-lista-home {
    flex-direction: column;
    gap: 20px;
  }
  .cursos-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .curso-card-home img {
    height: 300px;
  }
  .curso-overlay {
    padding: 18px 10px 12px 10px;
  }
}

/* Banner do curso */
.curso-banner {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background: linear-gradient(90deg, #0057b8 60%, #0057b8 100%);
  border-radius: 16px;
  margin: 40px auto 0 auto;
  max-width: 1100px;
  min-height: 340px;
  position: relative;
  box-shadow: 0 4px 24px #0001;
}
.curso-banner-box {
  background: #0057b8;
  color: #fff;
  padding: 32px 32px 24px 32px;
  border-radius: 12px;
  box-shadow: 0 2px 16px #0002;
  margin: 32px 0 32px 32px;
  min-width: 380px;
  max-width: 420px;
  width: 100%;
  z-index: 2;
}
.curso-banner-box h1 {
  font-size: 2.2em;
  font-weight: 800;
  margin-bottom: 8px;
}
.curso-banner-box .valor-bruto {
  font-size: 1em;
  margin-bottom: 2px;
  color: #c7e0ff;
}
.curso-banner-box .valor-parcela {
  font-size: 1.3em;
  font-weight: 700;
  margin-bottom: 18px;
}
.curso-banner-box .valor-parcela span {
  color: #ffd600;
}
#formulario {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  max-width: 100%;
}
#formulario .form-row {
  display: flex;
  gap: 8px;
  width: 100%;
}
#formulario input, #formulario select {
  flex: 1 1 0;
  min-width: 0;
  padding: 10px;
  border-radius: 6px;
  border: none;
  font-size: 1em;
  width: 100%;
  box-sizing: border-box;
}
#formulario button {
  background: #ffd600;
  color: #222;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  padding: 12px 0;
  font-size: 1.1em;
  margin-top: 8px;
  cursor: pointer;
  transition: background 0.2s;
}
#formulario button:hover {
  background: #ffe066;
}
.curso-banner-img {
  margin-left: 32px;
  margin-bottom: 0;
  z-index: 1;
}
.curso-banner-img img {
  max-width: 340px;
  width: 100%;
  border-radius: 0 0 32px 32px;
  box-shadow: 0 8px 32px #0002;
}

/* Grade curricular */
.curso-info {
  max-width: 1100px;
  margin: 40px auto 0 auto;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px #0001;
  padding: 32px 32px 24px 32px;
}
.curso-info-header h2 {
  font-size: 2em;
  font-weight: 700;
  color: #222;
  margin-bottom: 8px;
}
.curso-info-header h2 span {
  color: #0057b8;
}
.curso-info-header p {
  color: #444;
  font-size: 1.1em;
  margin-bottom: 24px;
}
.curso-grade {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: space-between;
}
.curso-semestre {
  background: #f8f8f8;
  border-radius: 10px;
  box-shadow: 0 1px 6px #0001;
  padding: 18px 18px 10px 18px;
  flex: 1 1 320px;
  min-width: 300px;
  margin-bottom: 8px;
}
.curso-semestre h3 {
  color: #0057b8;
  font-size: 1.1em;
  font-weight: 700;
  margin-bottom: 10px;
}
.curso-semestre ol {
  margin: 0;
  padding-left: 18px;
  color: #222;
  font-size: 1em;
}

/* Outros cursos */
.outros-cursos {
  background: #fff;
  padding: 56px 8vw;
  text-align: center;
}
.outros-cursos h2 {
  font-size: 2em;
  font-weight: 800;
  margin-bottom: 40px;
  color: #222;
}
.cursos-lista {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}
.curso-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px #0001;
  overflow: hidden;
  transition: transform 0.2s;
}
.curso-card:hover {
  transform: translateY(-6px);
}
.curso-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.curso-card h3 {
  font-size: 1.1em;
  font-weight: 700;
  color: #0057b8;
  margin: 16px 16px 8px 16px;
}
.curso-card p {
  color: #444;
  font-size: 0.9em;
  margin: 0 16px 16px 16px;
}

/* Benefícios */
.beneficios {
  background: #ffd600;
  padding: 56px 8vw;
  text-align: center;
}
.beneficios h2 {
  font-size: 2em;
  font-weight: 800;
  margin-bottom: 40px;
  color: #222;
}
.beneficios-lista {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}
.beneficio-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px #0001;
  padding: 32px 24px;
  text-align: center;
}
.beneficio-card img {
  width: 48px;
  margin-bottom: 16px;
}
.beneficio-card h3 {
  color: #0057b8;
  font-size: 1.1em;
  font-weight: 700;
  margin-bottom: 12px;
}
.beneficio-card p {
  color: #444;
  font-size: 1em;
  line-height: 1.5;
}

@media (max-width: 1100px) {
  .cursos-lista {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 900px) {
  .cursos-lista {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .beneficios-lista {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .cursos-lista {
    grid-template-columns: 1fr;
  }
  
  .beneficios-lista {
    grid-template-columns: 1fr;
  }
}

/* Header/menu moderno */
.header-curso {
  background: #fff;
  box-shadow: 0 2px 12px #0001;
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 10;
}
.menu-curso {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  height: 72px;
}
.logo-curso img {
  height: 48px;
}
.menu-lista {
  display: flex;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.menu-lista li a {
  color: #0057b8;
  font-weight: 600;
  text-decoration: none;
  font-size: 1.05em;
  transition: color 0.2s;
}
.menu-lista li a:hover {
  color: #ffd600;
}
.btn-grad-curso {
  background: linear-gradient(90deg, #ffd600 60%, #ffe066 100%);
  color: #0057b8;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  padding: 12px 28px;
  font-size: 1.1em;
  margin-left: 32px;
  text-decoration: none;
  box-shadow: 0 2px 8px #0001;
  transition: background 0.2s, color 0.2s;
  display: inline-block;
}
.btn-grad-curso:hover {
  background: #ffd600;
  color: #222;
}
@media (max-width: 900px) {
  .menu-curso {
    flex-direction: column;
    height: auto;
    padding: 12px 8px;
    gap: 8px;
  }
  .btn-grad-curso {
    margin-left: 0;
    margin-top: 8px;
  }
  .menu-lista {
    gap: 18px;
  }
}
@media (max-width: 600px) {
  .curso-banner-box {
    padding: 18px 8px 18px 8px;
    min-width: unset;
    max-width: 100%;
  }
  #formulario .form-row {
    flex-direction: column;
    gap: 6px;
  }
}

.menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 8vw;
  background: #fff;
  box-shadow: 0 2px 8px #0001;
}

.logo img {
  height: 48px;
}

.menu ul {
  display: flex;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu ul li a {
  color: #222;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.menu ul li a:hover {
  color: #0057b8;
}

.btn-grad {
  background: #0057b8;
  color: #fff;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  transition: background 0.2s;
}

.btn-grad:hover {
  background: #004494;
}

.banner-curso {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(90deg, #0057b8 60%, #0057b8 100%);
  padding: 48px 8vw;
  min-height: 420px;
}

.banner-info {
  flex: 1;
  color: #fff;
  max-width: 600px;
}

.banner-info h1 {
  font-size: 2.4em;
  font-weight: 800;
  margin: 0 0 16px 0;
}

.banner-info .valor-bruto {
  font-size: 1.1em;
  margin-bottom: 8px;
}

.banner-info .valor-parcela {
  font-size: 1.3em;
  margin-bottom: 24px;
}

.banner-info .valor-parcela span {
  color: #ffd600;
  font-weight: 700;
}

#formulario {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 400px;
}

#formulario input {
  padding: 12px 16px;
  border: none;
  border-radius: 8px;
  font-size: 1em;
}

#formulario button {
  background: #2ecc71;
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

#formulario button:hover {
  background: #27ae60;
}

.banner-img {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.banner-img img {
  max-width: 480px;
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 8px 32px #0002;
}

/* Customização da seta da select box do Header da Home */
.custom-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: none;
  position: relative;
}
.select-arrow {
  pointer-events: none;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  fill: #fff;
  z-index: 10;
}

/* Garante que o select ocupe toda a largura do container pai */
.select-wrapper {
  position: relative;
  width: 100%;
} 