

* {
      box-sizing: border-box;
      font-family: Arial, Helvetica, sans-serif;
}

body {
      margin: 0;
      background: #0b1320;
      color: #ffffff;
}

.container {
      max-width: 1200px;
      margin: auto;
      padding: 40px 20px;
      display: grid;
      grid-template-columns: 1.5fr 1fr;
      gap: 40px;
}


.top_heading_out {
  width: 100%;
  background: linear-gradient(180deg,#0b1320,#020617);
  border-bottom: 1px solid rgba(255,255,255,.06);
  margin-bottom: 25px;
}

.page-title-wrapper {
  padding: 10px 0;
}

.page-title {
  margin: 0;
  font-size: 36px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -.4px;
}

/* Optional subtitle spacing if you add later */

.page-title + p {
  margin-top: 8px;
  color: #cbd5e1;
}

@media(max-width: 768px) {

  .page-title-wrapper {
    padding: 32px 0;
  }

  .page-title {
    font-size: 26px;
  }

}

.site-footer {
  width: 100%;
  padding: 32px 0 24px;
  border-top: 1px solid rgba(255,255,255,.06);
  background: var(--bg-soft,#0f1520);
  color: var(--text,#e6eef8);
}

.site-footer-inner {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.site-footer a {
  color: #ff7a00;
  text-decoration: none;
  font-weight: 600;
  transition: all .2s ease;
}

.site-footer a:hover {
  color: #ffb366;
  text-decoration: underline;
}

  .footer-cols{
    display:grid;
    grid-template-columns:repeat(4, minmax(0,1fr));
    gap:24px;
  }

  .logos{
    display:flex;
    flex-direction:column;
    gap:12px;
    align-items:flex-start;
  }

  .footer-logo{
    width:150px;
    max-width:100%;
    height:auto;
    display:block;
    background:#fff;      /* moldura branca */
    padding:3px;
    border-radius:6px;
  }

  .footer-list{ list-style:none; padding:0; margin:10px 0 0; }
  .footer-list li + li { margin-top:8px; }

  .footer-bottom{
    margin-top:22px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
    color:#9db1c8;
    font-size:.95rem;
    flex-wrap:wrap;
  }
  .footer-meta{ opacity:.9; }

  .social-links{
    display:flex;
    gap:12px;
  }
  .social-links img{
    width:28px;
    height:28px;
    filter:brightness(0) invert(1); /* mantém ícones brancos */
    transition:opacity .2s;
  }
  .social-links img:hover{ opacity:.7; }

  @media(max-width:960px){
    .footer-cols{ grid-template-columns:repeat(2, minmax(0,1fr)); }
  }
  @media(max-width:560px){
    .footer-cols{ grid-template-columns:1fr; }
    .footer-bottom{ flex-direction:column; text-align:center; gap:8px; }
    .logos{ align-items:center; }
    .social-links{ justify-content:center; }
  }

.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    background-color: #25D366;
    border-radius: 50%;
    padding: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease;
  }

  .whatsapp-button:hover {
    transform: scale(1.1);
  }

  .whatsapp-button img {
    width: 32px;
    height: 32px;
    display: block;
  }

  a {
  color: #ff7a00;
  text-decoration: none;
  font-weight: 600;
  transition: color .2s ease, text-decoration .2s ease;
}

a:hover {
  color: #e63b16;
  text-decoration: underline;
}

a:active {
  color: #cc2f12;
}

a:focus-visible {
  outline: 2px solid rgba(255,122,0,.5);
  outline-offset: 2px;
}