* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
  background-color: #f9f9f9;
  color: #333;
}

.container {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
}

header {
  background-color: #1c2e4a;
  color: white;
  padding: 20px 0;
}

header h1 {
  text-align: center;
  margin-bottom: 10px;
}

nav ul {
  display: flex;
  justify-content: center;
  gap: 20px;
  list-style: none;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}


.hero {
  background-color: #243a60;
  color: white;
  text-align: center;
  padding: 60px 20px;
} 
/*
.hero {
  background-image: url('https://images.unsplash.com/photo-1585386959984-a41552262b43?auto=format&fit=crop&w=1350&q=80');
  background-size: cover;
  background-position: center;
  height: 100vh;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
}
*/
.hero-content {
  background-color: rgba(0, 0, 0, 0.5); /* fundo semi-transparente para melhor leitura */
  padding: 40px;
  border-radius: 10px;
}

.hero h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.hero .btn {
  margin-top: 20px;
  background-color: #f1c40f;
  color: #243a60;
  padding: 10px 20px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
}

.section {
  padding: 60px 20px;
}

.bg-light {
  background-color: #f1f1f1;
}

.servico {
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            padding: 20px;
            width: 300px;
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
      }


.servicos,
.cases {
  list-style: none;
  padding-left: 0;
}

.servicos li,
.cases li {
  margin-bottom: 20px;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 600px;
}

.form input,
.form textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  width: 100%;
}

.form button {
  background-color: #1c2e4a;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.form button:hover {
  background-color: #2d4166;
}

.whatsapp {
  margin-top: 20px;
}

.whatsapp a {
  color: #1c2e4a;
  font-weight: bold;
  text-decoration: underline;
}

footer {
  background-color: #1c2e4a;
  color: white;
  text-align: center;
  padding: 20px 0;
  font-size: 0.9rem;
}

.cards {
  display: grid;
  grid-template-columns: auto-fit; 
  gap: 20px;
  margin-top: 30px;
}

.card {
  background-color: white;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.card h3 {
  margin-bottom: 10px;
  color: #1c2e4a;
}

.card h2 {
 font-size: 1.8rem;
  margin-bottom: 10px;
  color: #1c2e4a;
  font-weight: bold;
}

