/* ==========================
   Estilos Gerais
========================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: #f8f8f8;
  color: #333;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* ==========================
   Cabeçalho
========================== */
header {
  background: #ffffff;
  padding: 20px 0;
  border-bottom: 2px solid #e5e5e5;
  position: sticky;
  top: 0;
  z-index: 1000;
}

header .logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: #0a2e5c;
}

nav ul {
  display: flex;
  gap: 20px;
  list-style: none;
}

nav ul li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: 0.3s;
}

nav ul li a:hover {
  color: #0a2e5c;
}

/* ==========================
   HERO SECTION
========================== */
.hero {
  background: linear-gradient(to right, #0a2e5c, #154a80);
  padding: 100px 0;
  color: #fff;
  text-align: center;
}

.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 10px auto 20px;
}

.hero .btn {
  background: #ffd700;
  padding: 12px 25px;
  border-radius: 6px;
  color: #0a2e5c;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
}

.hero .btn:hover {
  background: #e6c200;
}

/* ==========================
   SESSÃO SOBRE NÓS
========================== */
section {
  padding: 60px 0;
}

h2.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 20px;
  color: #0a2e5c;
}

.sobre p {
  max-width: 800px;
  margin: 15px auto;
  font-size: 1.05rem;
  text-align: justify;
}

/* ==========================
   SERVIÇOS
========================== */
.servicos-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.servico-card {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}

.servico-card:hover {
  transform: translateY(-5px);
}

.servico-card h3 {
  margin-bottom: 10px;
  color: #0a2e5c;
}

/* ==========================
   CONTATO
========================== */
.contato-info {
  text-align: center;
  font-size: 1.1rem;
}

.contato-info p {
  margin: 10px 0;
}

.contato-info a {
  color: #0a2e5c;
  text-decoration: none;
  font-weight: bold;
}

/* ==========================
   Rodapé
========================== */
footer {
  background: #0a2e5c;
  color: #fff;
  padding: 20px 0;
  text-align: center;
  margin-top: 40px;
}
