:root {
  --azul: #0056D2;
  --azul-escuro: #003C99;
  --preto: #1D1D1D;
  --cinza-claro: #F5F7FA;
  --cinza-medio: #E3E7EF;
  --branco: #FFFFFF;
  font-family: "DM Sans", sans-serif;
}

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

body {
  background: var(--cinza-claro);
  color: var(--preto);
  line-height: 1.6;
}

/* NAVBAR */
header {
  background: var(--branco);
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 999;
  border-bottom: 1px solid var(--cinza-medio);
}

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

.navbar {
  padding: 1rem 0;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 48px;
  object-fit: contain;
}

/* MENU */
.menu {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.menu a {
  text-decoration: none;
  color: var(--azul);
  font-weight: 600;
}

.menu a:hover {
  color: var(--azul-escuro);
}

.btn-outline {
  padding: .5rem 1rem;
  border: 2px solid var(--azul);
  border-radius: 100px;
  color: var(--azul);
  font-weight: 700;
  text-decoration: none;
  transition: .2s;
}

.btn-outline:hover {
  background: var(--azul);
  color: var(--branco);
}

/* MOBILE */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  border: none;
  background: none;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--azul);
}

@media (max-width: 768px) {
  .menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--branco);
    flex-direction: column;
    padding: 1rem;
    border: 1px solid var(--cinza-medio);
    border-radius: 8px;
    width: 200px;
  }

  .menu.open {
    display: flex;
  }

  .hamburger {
    display: flex;
  }
}

/* HERO */
.hero {
  background: var(--branco);
  padding: 140px 0 80px;
}

.hero-layout {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.hero-content {
  flex: 1 1 50%;
}

.hero-logo {
  width: 140px;
  margin-bottom: 1rem;
}

.hero-subtitle {
  text-transform: uppercase;
  color: var(--azul);
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: 1px;
}

.hero h1 {
  font-size: 2.9rem;
  font-weight: 800;
  color: var(--preto);
  margin: 1rem 0;
}

.hero-texto {
  font-size: 1.1rem;
  color: #444;
  max-width: 520px;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--azul);
  padding: .9rem 1.7rem;
  border-radius: 100px;
  color: var(--branco);
  margin-top: 1.5rem;
  font-weight: 600;
  text-decoration: none;
}

.btn-whatsapp:hover {
  background: var(--azul-escuro);
}

.mulher1 img {
  max-width: 100%;
  border-radius: 10px;
}

/* ESTATÍSTICAS */
.estatisticas-box {
  margin-top: 25px;
  background: var(--branco);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}

.estatistica {
  flex: 1;
  text-align: center;
}

.estatistica h3 {
  font-size: 2.2rem;
  color: var(--azul);
  font-weight: 800;
}

.estatistica p {
  margin-top: .4rem;
  color: var(--preto);
}

/* SEÇÕES */
section {
  padding: 90px 0;
}

/* SERVIÇOS (CORRIGIDO E CENTRALIZADO) */
.titulo-servicos {
  text-align: center;
  color: var(--azul);
  font-size: 2.3rem;
  font-weight: 800;
  margin-bottom: 0.3rem;
}

.subtitulo-servicos {
  text-align: center;
  color: var(--preto);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 2.5rem;
}

.grid-servicos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.servico-card {
  padding: 1.5rem;
  background: var(--branco);
  border: 1px solid var(--cinza-medio);
  border-radius: 12px;
  transition: .2s;
  text-align: center;
}

.servico-card:hover {
  box-shadow: 0 5px 18px rgba(0,0,0,0.06);
}

.icon-check {
  width: 24px;
  margin-bottom: .5rem;
}

.servico-card h4 {
  margin: .5rem 0;
  color: var(--preto);
  font-weight: 700;
}

.invisible {
  visibility: hidden;
}

/* SOBRE */
.sobre-nos {
  background: var(--cinza-claro);
}

.sobre-layout {
  display: flex;
  gap: 3rem;
  align-items: center;
  flex-wrap: wrap;
}

.sobre-img img {
  max-width: 260px;
}

.sobre-texto h2 {
  font-size: 2rem;
  color: var(--preto);
}

/* CONTATO */
.contato {
  background: var(--branco);
}

.contato-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}

.contato-info {
  flex: 1 1 50%;
}

.contato-img {
  flex: 1 1 40%;
  text-align: right;
}

.contato-img img {
  max-width: 280px;
  height: auto;
}

/* FOOTER */
.rodape {
  background: var(--azul);
  color: var(--branco);
  padding: 40px 0;
}

.rodape-layout {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.rodape-social img {
  filter: invert(1);
  width: 24px;
  margin-left: 10px;
}
