:root {
  --primary: #002B5B;
  --accent: #FFD700;
  --bg-light: #f9f9f9;
  --text-dark: #333;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.6;
}

header {
  background: linear-gradient(rgba(0, 43, 91, 0.7), rgba(0, 43, 91, 0.7)), url('/static/imagens/hero_banner/header.jpg');
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
  padding: 100px 20px;
}

header h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

header p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.cta-button {
  background-color: var(--accent);
  color: var(--primary);
  padding: 12px 24px;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  text-decoration: none;
}

.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 60px 20px;
  background-color: white;
}

.service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--bg-light);
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
  text-decoration: none;
  color: var(--text-dark);
  transition: transform 0.3s, box-shadow 0.3s, background-color 0.3s;
}

.service-card:hover {
  background-color: #f0f8ff;
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 43, 91, 0.2);
}

.service-card .icon {
  width: 40px;
  height: 40px;
  margin-bottom: 10px;
}

.about {
  padding: 60px 20px;
  text-align: center;
}

.about h2 {
  color: var(--primary);
  margin-bottom: 20px;
}

.contact {
  background-color: var(--primary);
  color: white;
  padding: 60px 20px;
  text-align: center;
}

.contact h2 {
  margin-bottom: 20px;
}

form {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

input, textarea, select {
  padding: 10px;
  border: none;
  border-radius: 5px;
}

button[type="submit"] {
  background-color: var(--accent);
  color: var(--primary);
  padding: 12px;
  border: none;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
}

footer {
  background: #001f3f;
  color: white;
  text-align: center;
  padding: 20px;
}
