/* ESTILOS GERAIS */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  color: #333;
}

.container {
  width: 80%;
  margin: 0 auto;
  max-width: 1100px;
  padding: 20px 0;
}

/* PALETA DE CORES */
:root {
  --azul-escuro: #002450; /* Azul Clarest oficial */
  --azul-claro: #2E6FAF;
  --cinza-fundo: #f4f4f4;
  --texto-claro: #FFFFFF;
}

/* CABEÇALHO */
header {
  background: #002450;
  color: #FFFFFF;
  padding: 12px 0;
  border-bottom: 5px solid #0f3a61;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  width: 300px; /* ou 300px, se quiser mais destaque */
  height: auto;
  display: block;
}

/* NAVEGAÇÃO */
nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
}

nav ul li {
  margin-left: 20px;
}

nav ul li a {
  color: var(--texto-claro);
  text-decoration: none;
  padding: 8px 14px;
  font-size: 1.1em;
  transition: background 0.3s;
  display: block;
}

nav ul li a:hover {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 6px;
}

/* BOTÕES */
.btn-primary, .btn-contato {
  display: inline-block;
  background: var(--texto-claro);
  color: var(--azul-escuro) !important;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 6px;
  border: 2px solid var(--texto-claro);
  font-weight: bold;
  font-size: 1.05em;
}

.btn-primary:hover, .btn-contato:hover {
  background: var(--azul-escuro);
  color: var(--texto-claro) !important;
}

/* BANNER */
.banner {
  background-color: var(--azul-claro);
  color: var(--texto-claro);
  text-align: center;
  padding: 100px 0;
}

.banner h2 {
  font-size: 2.5em;
  margin-bottom: 12px;
}

.banner p {
  font-size: 1.1em;
  margin-bottom: 22px;
}

/* SERVIÇOS */
.servicos-section {
  padding: 60px 0;
  text-align: center;
  background: var(--cinza-fundo);
}

.servicos-section h3 {
  font-size: 2em;
  margin-bottom: 40px;
  color: var(--azul-escuro);
}

.servicos-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

.servico {
  background: white;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 6px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  box-sizing: border-box;
  width: calc(33.333% - 13.33px);
}

.servico h4 {
  color: var(--azul-escuro);
  margin-bottom: 10px;
}

.servico p {
  font-size: 1em;
  color: #444;
}

@media (max-width: 768px) {
  .servico {
    width: 100%;
  }
}

/* SOBRE NÓS */
.sobre-section {
  background: var(--azul-claro);
  color: var(--texto-claro);
  padding: 60px 0;
}

.sobre-layout {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.sobre-texto {
  flex: 1 1 60%;
}

.sobre-texto h3 {
  font-size: 2.2em;
  margin-bottom: 20px;
}

.sobre-destaque {
  font-size: 1.2em;
  line-height: 1.85;
  margin-bottom: 20px;
}

.sobre-perfil {
  flex: 1 1 35%;
  text-align: center;
}

.sobre-perfil img {
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #fff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  margin-bottom: 16px;
}

.perfil-legenda {
  font-size: 0.95em;
  line-height: 1.6;
  color: var(--texto-claro);
  max-width: 300px;
  margin: 0 auto;
}

/* CONTATO */
.contato-section {
  background: var(--cinza-fundo);
  padding: 60px 0;
  text-align: center;
}

.contato-section h3 {
  font-size: 2em;
  margin-bottom: 20px;
  color: var(--azul-escuro);
}

.contato-section p {
  font-size: 1.2em;
  margin: 10px 0;
  color: #333;
}

.contato-section a {
  color: var(--azul-escuro);
  text-decoration: none;
  font-weight: bold;
}

.contato-section a:hover {
  text-decoration: underline;
}

/* RODAPÉ */
footer {
  background: #333;
  color: white;
  text-align: center;
  padding: 15px 0;
  font-size: 0.9em;
}

/* WHATSAPP FLUTUANTE */
.whatsapp-flutuante {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  text-decoration: none;
  transition: transform 0.25s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.whatsapp-flutuante:hover {
  transform: scale(1.06);
}

.whatsapp-icon {
  width: 56px;
  height: 56px;
  display: block;
}

.whatsapp-flutuante,
.whatsapp-flutuante img {
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}

.whatsapp-flutuante::before,
.whatsapp-flutuante::after {
  content: none !important;
}

/* RESPONSIVO */
@media (max-width: 768px) {
  .sobre-layout {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .sobre-texto, .sobre-perfil {
    flex: 1 1 100%;
  }

  .sobre-texto h3 {
    text-align: center;
  }

  .sobre-destaque {
    font-size: 1.1em;
  }

  .whatsapp-flutuante {
    display: inline-flex !important;
    bottom: 20px;
    right: 20px;
  }

  .btn-contato {
    display: none;
  }
}


