:root{
  --brand: #0b66c3;
  --brand-dark: #094f97;
  --bg: #f2f6fb;
  --surface: #ffffff;
  --text: #16202a;
  --muted: #667085;
  --stroke: rgba(15, 23, 42, 0.08);
  --shadow-sm: 0 8px 24px rgba(11, 102, 195, 0.08);
  --shadow-md: 0 18px 45px rgba(11, 102, 195, 0.14);
  --radius-lg: 28px;
  --radius-md: 22px;
  --radius-sm: 16px;
}

*{
  box-sizing: border-box;
}

html, body{
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
}

body::before{
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(11,102,195,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11,102,195,0.03) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: .45;
}

a{
  text-decoration: none;
}

.topo-site{
  background: var(--brand);
  padding: 24px 18px 96px;
  position: relative;
  overflow: hidden;
}

.topo-site::before{
  content: "";
  position: absolute;
  right: -90px;
  top: -40px;
  width: 240px;
  height: 240px;
  background: rgba(255,255,255,.08);
  border-radius: 50%;
  filter: blur(8px);
}

.topo-site__conteudo{
  max-width: 1200px;
  margin: 0 auto;
}

.marca{
  text-align: center;
  color: #fff;
  margin-bottom: 22px;
}

.marca__mini{
  margin: 0 0 6px;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  opacity: .92;
}

.marca h1{
  margin: 0;
  font-size: clamp(28px, 4vw, 40px);
  letter-spacing: .04em;
}

.menu-principal{
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.menu-principal a{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(255,255,255,.14);
  color: #fff;
  font-weight: bold;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, background .2s ease;
}

.menu-principal a:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,.22);
}

.pagina{
  max-width: 1200px;
  margin: -62px auto 0;
  padding: 0 18px 36px;
  position: relative;
  z-index: 2;
}

.hero{
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 22px;
  align-items: center;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(8px);
  border: 1px solid var(--stroke);
  border-radius: 30px;
  box-shadow: var(--shadow-md);
  padding: 26px;
  margin-bottom: 28px;
}

.hero__mini,
.secao-mini{
  margin: 0 0 8px;
  color: var(--brand);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: bold;
}

.hero__texto h2{
  margin: 0 0 12px;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.15;
}

.hero__texto p{
  color: var(--muted);
  line-height: 1.7;
  font-size: 16px;
}

.hero__acoes{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 14px;
  font-weight: bold;
  transition: .2s ease;
}

.btn--primario{
  background: var(--brand);
  color: #fff;
}

.btn--primario:hover{
  background: var(--brand-dark);
  transform: translateY(-1px);
}

.btn--secundario{
  background: #eef5fd;
  color: var(--brand);
  border: 1px solid rgba(11,102,195,.12);
}

.btn--secundario:hover{
  background: #e4f0fc;
  transform: translateY(-1px);
}

.hero__imagem{
  width: 100%;
}

.hero__imagem img{
  width: 100%;
  height: 100%;
  min-height: 320px;
  max-height: 430px;
  object-fit: cover;
  border-radius: 24px;
  display: block;
  box-shadow: var(--shadow-sm);
}

.atalhos{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
  margin-bottom: 28px;
}

.card-atalho{
  background: var(--surface);
  border: 1px solid var(--stroke);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 22px;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.card-atalho:hover{
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(11,102,195,.18);
}

.card-atalho__icone{
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: rgba(11,102,195,.10);
  font-size: 28px;
  margin-bottom: 14px;
}

.card-atalho h3{
  margin: 0 0 10px;
  font-size: 20px;
}

.card-atalho p{
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.6;
  min-height: 76px;
}

.card-atalho a{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 12px;
  background: var(--brand);
  color: #fff;
  font-weight: bold;
}

.card-atalho a:hover{
  background: var(--brand-dark);
}

.sobre,
.contato__box{
  background: rgba(255,255,255,.96);
  border: 1px solid var(--stroke);
  border-radius: 28px;
  box-shadow: var(--shadow-sm);
  padding: 28px;
}

.sobre{
  margin-bottom: 28px;
}

.sobre__cabecalho{
  text-align: center;
  margin-bottom: 20px;
}

.sobre__cabecalho h2{
  margin: 0;
  font-size: 32px;
}

.sobre__conteudo{
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.sobre__conteudo p{
  margin: 0 0 16px;
  font-size: 17px;
  line-height: 1.8;
  color: #475467;
}

.contato{
  margin-bottom: 10px;
}

.contato__box{
  text-align: center;
}

.contato__box h2{
  margin: 0 0 10px;
  font-size: 30px;
}

.contato__box p{
  max-width: 760px;
  margin: 0 auto 18px;
  line-height: 1.7;
  color: var(--muted);
}

.rodape-site{
  margin-top: 24px;
  padding: 18px;
  text-align: center;
  color: #5f6b7a;
  font-size: 14px;
}

@media (max-width: 960px){
  .hero{
    grid-template-columns: 1fr;
  }

  .hero__imagem img{
    min-height: 260px;
  }
}

@media (max-width: 640px){
  .topo-site{
    padding-bottom: 82px;
  }

  .pagina{
    margin-top: -48px;
  }

  .hero,
  .sobre,
  .contato__box{
    padding: 20px;
    border-radius: 22px;
  }

  .hero__texto h2{
    font-size: 30px;
  }

  .menu-principal{
    gap: 10px;
  }

  .menu-principal a{
    font-size: 14px;
    padding: 0 14px;
  }

  .card-atalho p{
    min-height: auto;
  }
}