/*
Theme Name: Almeida Souza - Astra Child
Template: astra
Version: 1.0
*/

:root {
  --ast-global-color-0: #1B2A4A;
  --ast-global-color-1: #C9A84C;
  --ast-global-color-2: #2D3748;
  --ast-global-color-3: #F0F3F8;
}

body, p, li {
  font-family: Arial, Helvetica, sans-serif;
  color: #2D3748;
}

h1, h2, h3, h4, h5, h6,
.site-title {
  font-family: Georgia, 'Times New Roman', serif;
  color: #1B2A4A;
}

a {
  color: #1B2A4A;
}
a:hover {
  color: #C9A84C;
}

.ast-header-break-point .site-header,
.site-header {
  border-bottom: 2px solid #C9A84C;
}

.ast-button, button, input[type="submit"] {
  background-color: #1B2A4A;
  border-color: #1B2A4A;
}
.ast-button:hover, button:hover, input[type="submit"]:hover {
  background-color: #C9A84C;
  border-color: #C9A84C;
}

/* Esconde o Site Title (redundante — a logo já tem o nome desenhado) */
.site-title, .ast-site-title-text {
  display: none;
}

/* Cabeçalho com mais respiro */
.site-header .ast-container,
.ast-header-break-point .site-header {
  padding-top: 10px;
  padding-bottom: 10px;
}

/* Hero da home */
.as-hero {
  background: #1B2A4A;
  color: #F2E7C9;
  padding: 72px 32px;
  text-align: center;
}
.as-hero h1 {
  color: #ffffff;
  font-size: 40px;
  margin-bottom: 16px;
}
.as-hero p {
  color: #C9A84C;
  font-size: 18px;
  max-width: 640px;
  margin: 0 auto 28px auto;
}
.as-hero .as-btn {
  display: inline-block;
  background: #C9A84C;
  color: #1B2A4A;
  font-weight: bold;
  padding: 14px 32px;
  border-radius: 4px;
  text-decoration: none;
}
.as-hero .as-btn:hover {
  background: #ffffff;
  color: #1B2A4A;
}

/* Grid de áreas de atuação */
.as-areas {
  max-width: 1100px;
  margin: 64px auto;
  padding: 0 24px;
}
.as-areas h2 {
  text-align: center;
  margin-bottom: 40px;
}
.as-areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.as-area-card {
  border: 1px solid #F0F3F8;
  border-left: 3px solid #C9A84C;
  padding: 20px;
  background: #ffffff;
}
.as-area-card h3 {
  font-size: 16px;
  margin: 0;
  color: #1B2A4A;
}
@media (max-width: 768px) {
  .as-areas-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Ajuste: grid de áreas agora com descrição, 2 colunas em vez de 4 */
.as-areas-grid {
  grid-template-columns: repeat(2, 1fr) !important;
}
.as-area-card p {
  font-size: 14px;
  color: #2D3748;
  margin: 8px 0 0 0;
  line-height: 1.6;
}

/* Seção Sobre */
.as-sobre {
  background: #F0F3F8;
  padding: 56px 24px;
}
.as-sobre-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.as-sobre h2 {
  color: #1B2A4A;
}
.as-sobre p {
  color: #2D3748;
  line-height: 1.7;
  margin-bottom: 20px;
}
