
body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f4f4f4;
    color: #333;
}
.header {
    background-color: #003366;
    color: white;
    padding: 20px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}
.logo {
    height: auto;
    max-width: 500px;
    object-fit: contain;
    padding: 0px 0;
}
nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}
nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}
.banner {
    background: linear-gradient(135deg, #003366, #0055a5);
    color: white;
    text-align: center;
    padding: 100px 20px;
}
.headline {
    font-size: 3em;
    margin-bottom: 10px;
}
.subheadline {
    font-size: 1.5em;
    margin-bottom: 20px;
}
.cta-button {
    background-color: #ffcc00;
    color: #003366;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s;
}
.cta-button:hover {
    background-color: #e6b800;
}
section {
    padding: 60px 20px;
}
.container {
    max-width: 1200px;
    margin: auto;
    font: size 20px;
    font-family: "Barlow", sans-serif;
    font-weight: 400;
    color: #003366;
    mask-size: auto;
    
}

.section-title {
    color: #003366;
    font-size: 2.5em;
    margin-bottom: 20px;
    text-align: center;
}
.section-text {
    font-size: 1.2em;
    line-height: 1.6em;
    text-align: center;
}
ul.course-list {
    list-style: none;
    padding: 0;
    font-size: 1.2em;
    text-align: center;
}
form input, form select, form button {
    display: block;
    width: 100%;
    margin-bottom: 15px;
    padding: 12px;
    font-size: 1em;
}
form button {
    background-color: #003366;
    color: white;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}
form button:hover {
    background-color: #0055a5;
}
footer {
    background-color: #222;
    color: white;
    text-align: center;
    padding: 20px 0;
}
footer a {
    color: white;
    margin: 0 10px;
    text-decoration: none;
}
.formulario-lateral {
    position: fixed;
    top: 95px;
    right: 0;
    width: 300px;
    background-color: #003366;
    padding: 30px;
    color: white;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    box-shadow: -2px 2px 5px rgba(0,0,0,0.3);
    z-index: 1000;
}
.formulario-lateral h3 {
    text-align: center;
    margin-bottom: 15px;
}
.formulario-lateral form input,
.formulario-lateral form select,
.formulario-lateral form button {
    display: block;
    width: 100%;
    margin-bottom: 10px;
    padding: 10px;
    font-size: 1em;
}
.formulario-lateral form button {
    background-color: #ffcc00;
    color: #003366;
    border: none;
    cursor: pointer;
    font-weight: bold;
}
.formulario-lateral form button:hover {
    background-color: #e6b800;
}
.galeria {
  margin: 40px auto;
  text-align: center;
  max-width: 100%;
}

.galeria-imagens {
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  max-width: 100%;
  padding: 0 20px;
}

.imagens {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 20px;
}

.imagens img {
  width: 450px;
  height: auto;
  flex-shrink: 0;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.seta {
  background-color: transparent;
  border: none;
  font-size: 2.5rem;
  cursor: pointer;
  padding: 10px;
  color: #333;
  transition: color 0.3s;
}

.seta:hover {
  color: #007bff;
}

@media (max-width: 768px) {
  .imagens img {
    width: 85vw;
  }
}


.politica-checkbox {
  display: block;
  font-size: 0.9rem;
  margin: 10px 0 20px;
  color: #333;
}

.politica-checkbox input[type="checkbox"] {
  margin-right: 8px;
  transform: scale(1.2);
}

.politica-checkbox a {
  color: #0073e6;
  text-decoration: underline;
}
