/* Reset e estilos base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Arial", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.container h2 {
  text-align: center;
}

/* Cabeçalho e Navegação */
header {
  /* background-color: #1a3a5c; */
  background-color: white !important;
  color: white;
  position: fixed;
  width: 100%;
  height: 120px;
  top: 0;
  z-index: 1000 !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: white;
  height: 120px;
  width: 200px;
}

.logo img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  list-style: none;
}

.nav-menu li {
  margin-left: 2rem;
}

.nav-menu a {
  color: #1a3a5c;
  text-decoration: none;
  transition: color 0.3s;
  font-weight: 700;
}

.nav-menu a:hover {
  color: #f0b400;
}

.hamburger {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
  flex-direction: column;
  width: 30px;
  height: 24px;
  position: relative;
}

.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: white;
  margin: 3px 0;
  transition: 0.3s;
}

/* Seções principais */
.section {
  padding: 5rem 0;
}

.hero {
  background: linear-gradient(rgba(26, 58, 92, 0.8), rgba(26, 58, 92, 0.8)),
    url("https://images.unsplash.com/photo-1581094794329-c8112a89af12?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: white;
  text-align: center;
  padding: 12rem 0;
  margin-top: 120px;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  max-width: 800px;
  padding: 0 20px;
}

.hero h1 {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
}

.btn {
  display: inline-block;
  background-color: #f0b400;
  color: #1a3a5c;
  padding: 0.8rem 2rem;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn:hover {
  background-color: #e0a800;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Seções de serviços */
.services {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  margin: 3rem 0;
}

.service-card {
  flex: 1;
  min-width: 250px;
  background-color: #f5f5f5;
  padding: 2.5rem 2rem;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card h3 {
  color: #1a3a5c;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.service-card img {
  margin-top: 24px;
  border-radius: 8px;
  width: 250px;
  height: 180px;
}

/* Seção Quem Somos */
.about {
  background-color: #f9f9f9;
}

.about h2 {
  text-align: center;
  padding: 24px;
}

.about p {
  font-size: 1.1rem;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

/* Seção Missão, Visão e Valores */
.mission-vision-values {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 3rem;
}

.mv-item {
  flex: 1;
  min-width: 300px;
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.mv-item h3 {
  color: #1a3a5c;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.values-list {
  list-style-type: none;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.values-list li {
  margin-bottom: 0.8rem;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
  list-style-type: none;
}

/* Formulário de contato */
.contact-form {
  background-color: white;
  padding: 3rem;
  border-radius: 8px;
  margin-top: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: bold;
  color: #1a3a5c;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #1a3a5c;
}

.form-group textarea {
  height: 150px;
  resize: vertical;
}

/* Rodapé */
footer {
  background-color: #1a3a5c;
  color: white;
  padding: 3rem 0 2rem;
}

footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-info {
  margin-bottom: 2rem;
  text-align: center;
}

.contact-info p {
  margin-bottom: 0.5rem;
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1rem;
  width: 100%;
  text-align: center;
}

/* Responsividade */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 120px;
    right: -100%;
    flex-direction: column;
    background-color: #1a3a5c;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding: 2rem 0;
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-menu li {
    margin: 1.5rem 0;
  }

  .nav-menu a {
    color: white;
  }

  .hero {
    padding: 8rem 0;
    min-height: 70vh;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .services {
    flex-direction: column;
  }

  .service-card {
    min-width: 100%;
  }

  .mission-vision-values {
    flex-direction: column;
  }

  .mv-item {
    min-width: 100%;
  }

  .contact-form {
    padding: 2rem;
  }

  .section {
    padding: 3rem 0;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.8rem;
  }

  .hero {
    padding: 6rem 0;
  }

  .contact-form {
    padding: 1.5rem;
  }

  .nav-container {
    padding: 0 15px;
  }
}
