@charset "utf-8";

/* DIN Next font faces */
@font-face {
  font-family: 'DIN Next';
  font-weight: 900;
  src: url('../fonts/din-next/din-next-black.otf') format('opentype');
}

@font-face {
  font-family: 'DIN Next';
  font-weight: 900;
  font-style: italic;
  src: url('../fonts/din-next/din-next-black-italic.otf') format('opentype');
}

@font-face {
  font-family: 'DIN Next';
  font-weight: 700;
  src: url('../fonts/din-next/din-next-bold.otf') format('opentype');
}

@font-face {
  font-family: 'DIN Next';
  font-weight: 700;
  font-style: italic;
  src: url('../fonts/din-next/din-next-bold-italic.otf') format('opentype');
}

@font-face {
  font-family: 'DIN Next';
  font-weight: 800;
  src: url('../fonts/din-next/din-next-heavy.otf') format('opentype');
}

@font-face {
  font-family: 'DIN Next';
  font-weight: 800;
  font-style: italic;
  src: url('../fonts/din-next/din-next-heavy-italic.otf') format('opentype');
}

@font-face {
  font-family: 'DIN Next';
  font-weight: 600;
  src: url('../fonts/din-next/din-next-medium.otf') format('opentype');
}

@font-face {
  font-family: 'DIN Next';
  font-weight: 600;
  font-style: italic;
  src: url('../fonts/din-next/din-next-medium-italic.otf') format('opentype');
}

@font-face {
  font-family: 'DIN Next';
  font-weight: 400;
  src: url('../fonts/din-next/din-next-regular.otf') format('opentype');
}

@font-face {
  font-family: 'DIN Next';
  font-weight: 400;
  font-style: italic;
  src: url('../fonts/din-next/din-next-italic.otf') format('opentype');
}

@font-face {
  font-family: 'DIN Next';
  font-weight: 300;
  src: url('../fonts/din-next/din-next-light.otf') format('opentype');
}

@font-face {
  font-family: 'DIN Next';
  font-weight: 300;
  font-style: italic;
  src: url('../fonts/din-next/din-next-light-italic.otf') format('opentype');
}

@font-face {
  font-family: 'DIN Next';
  font-weight: 200;
  src: url('../fonts/din-next/din-next-ultra-light.otf') format('opentype');
}

@font-face {
  font-family: 'DIN Next';
  font-weight: 200;
  font-style: italic;
  src: url('../fonts/din-next/din-next-ultra-light-italic.otf')
    format('opentype');
}

/* CSS Document */

body,
html,
input,
select,
textarea,
button {
  font-family: 'DIN Next', Tahoma, Geneva, sans-serif;
  background: #fff;
  margin: 0;
  padding: 0;
}

.entity {
  font-size: 1.3em;
  font-weight: bold;
}

.main-content {
  max-width: 1200px;
  margin: 0 auto;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: flex-start;
  margin-bottom: 32px;
}

.card {
  background: #fff;
  border: 1.5px solid #e3e3e3;
  border-radius: 10px;
  width: 180px;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 16px;
}

.card img {
  height: 48px !important;
  margin-bottom: auto;
}

.card h2 {
  font-size: 24px;
  font-weight: 500;
  margin: 0 0 8px 0;
  color: #222;
}

.card a {
  text-align: start;
  display: flex;
  flex-direction: column;
  align-items: start;
  height: 100%;
  text-decoration: none;
}

.card a > * {
  width: fit-content;
  text-align: start;
}

.card p {
  font-size: 0.98em;
  color: #888;
  margin: 0;
}

.header,
.footer {
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #5a2318;
  color: #fff;
  border: 0px;
}

.header-content,
.footer-content {
  width: 100%;
  max-width: 1200px;
  text-align: left;
  font-size: 10px;
  display: flex;
  justify-content: space-between;
}

.footer span {
  font-size: 16px;
  font-weight: 300;
  color: #cccccc;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-text {
  color: #ffffff;
  font-size: 16px;
  margin-right: 15px;
}

.btn,
a {
  border: none !important;
  border-radius: 25px !important;
  padding: 6px 16px !important;
  font-size: 14px !important;
  cursor: pointer !important;
  font-family: 'DIN Next', Tahoma, Geneva, sans-serif !important;
}

.white-btn {
  background-color: #ffffff !important;
  color: #000000 !important;
  text-decoration: underline !important;
}

.yellow-btn {
  background-color: #ffc72c !important;
  color: #333333 !important;
}

.page-title {
  font-weight: 400;
  font-size: 28px;
  margin: 0;
}

.page-subtitle {
  font-size: 16px;
  color: #8c8c8c;
  width: 100%;
  text-align: start;
  margin: 0;
}

.title-block {
  margin: 24px 0;
}

.partner-header {
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
}
.banner-section {
  margin-bottom: 32px;
}

.banner-desktop,
.banner-mobile {
  width: 100%;
  display: block;
}

.banner-desktop {
  display: block;
}
.banner-mobile {
  display: none;
}

ul {
  margin: 0px;
  padding: 0px;
}

li.info {
  display: block;
  font-size: 12px;
}

li.error {
  display: block;
  color: #d74d4d;
  font-size: 12px;
}

@media (max-width: 768px) {
  .banner-desktop {
    display: none;
  }
  .banner-mobile {
    display: block;
  }
}

/* Animacoes SlideIn */
@keyframes slidein {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.slidein300 {
  opacity: 0;
  animation: slidein 1s ease 300ms forwards;
}
.slidein500 {
  opacity: 0;
  animation: slidein 1s ease 500ms forwards;
}
.slidein700 {
  opacity: 0;
  animation: slidein 1s ease 700ms forwards;
}

@media (max-width: 900px) {
  .cards {
    flex-direction: column;
    align-items: center;
  }

  .card {
    width: 90vw;
  }
}

/* Template Login - Classes específicas */
.logo-header {
  height: 54px;
}

.header-link {
  text-decoration: none !important;
  color: black !important;
}

.login-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  align-items: flex-start;
}

.info-section {
  flex: 1 1 400px;
  min-width: 350px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  margin: 48px 0px;
}

.info-image {
  width: 100%;
}

.info-title {
  font-size: 2em;
  font-weight: 600;
  margin-bottom: 12px;
  color: #222;
}

.info-text-large {
  font-size: 1.1rem;
  color: #888;
  margin-bottom: 16px;
}

.info-text {
  font-size: 1rem;
  color: #888;
}

.login-card {
  flex: 1 1 300px;
  padding: 0px !important;
  margin-top: 24px;
  background: #fff;
  display: flex;
  flex-direction: column;
}

.login-card-title {
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 8px;
  color: #222;
}

.login-card-subtitle {
  font-size: 1rem;
  color: #888;
  margin-bottom: 16px;
}

.form-spacing {
  margin: 24px 0px;
  padding: 0px;
  display: flex;
  gap: 10px;
}

.form-group {
  margin-bottom: 16px;
  width: 100%;
}

.form-label {
  font-size: 1rem;
  color: #222;
  font-weight: 400;
}

.form-input {
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
  padding: 10px !important;
  border-radius: 8px !important;
  border: 1.5px solid #e3e3e3 !important;
  font-size: 1rem !important;
  margin-top: 6px !important;
  margin-bottom: 8px !important;
  background-image: none !important;
}

.messages-container {
  margin-bottom: 8px;
}

.btn-primary {
  width: 100% !important;
  background: #5a2318 !important;
  color: #fff !important;
  border-radius: 8px !important;
  padding: 12px 0 !important;
  font-size: 1rem !important;
  font-weight: 300 !important;
  text-align: center !important;
  display: block !important;
  margin-bottom: 16px !important;
  text-decoration: none !important;
  margin-bottom: 0px !important;
  height: 18px !important;
  border-radius: 8px !important;
  margin-top: 24px !important;
}

.divider-section {
  width: 100%;
  text-align: center;
  color: #8c8c8c;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.divider-line {
  width: 100%;
  height: 1px;
  background: #8c8c8c;
}

.divider-text {
  width: fit-content;
  text-wrap: nowrap;
}

.form-spacing-bottom {
  margin-bottom: 24px;
}

.btn-secondary {
  width: 100%;
  background: #fff;
  color: #5a2318;
  border: 1.5px solid #5a2318;
  border-radius: 8px;
  padding: 12px 0;
  font-size: 1rem;
  font-weight: 300;
  text-align: center;
  display: block;
  text-decoration: none;
}

.rich-calendar-input {
  width: 100%;
  min-width: 90px;

  background: #fff;
  padding: 8px;
  border: 1px solid #cccccc;

  border-radius: 4px 0px 0px 4px;
  border-right: 0px;
  padding-right: 0px;

  color: #8c8c8c;
}

li > span {
  display: flex;
  align-items: center;
}

.rich-calendar-button {
  padding: 6px;
  background: #fff;
  border: 1px solid #cccccc;
  border-radius: 0px 4px 4px 0px;
  border-left: 0px;
}

.menu_conteudo li.pesquisa input {
  max-width: 90px;
  margin-top: 0px;
  padding: 8px;
  border: 1px solid #cccccc;
  border-radius: 4px 0px 0px 4px;
  border-right: 0px;
}

.menu_conteudo li.pesquisa input:focus {
  outline: none;
  border: 1px solid #cccccc;
  border-right: 0px;
}

.menu_conteudo li.pesquisa .lupa {
  height: 25px;
  background: #fff;
  border: 1px solid #cccccc;
  border-radius: 0px 4px 4px 0px;
  border-left: 0px;

  background-image: url('../imgs/magnifying-glass.png');
  background-repeat: no-repeat;
  background-size: 14px 14px;
  background-position: center;
}

.mensagens .warn {
  padding: 200px;
  text-align: center;
  background-repeat: no-repeat;
  background-position: 5px center;
  border-radius: 10px;
  border: 1px solid #cccccc;

  background-image: none;
  background: transparent;
  margin-bottom: 32px;

  font-weight: 400;
  color: #8c8c8c;
}

/* Styles moved from Certidao.xhtml inline styles */
.certidao-header-wrapper {
  margin-bottom: 24px;
}
.certidao-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 24px 0;
}
.certidao-title-group h1 {
  font-size: 28px;
  color: #222;
  margin: 0px;
  font-weight: 500;
}
.certidao-title-group .subtitle {
  color: #888;
  font-size: 16px;
}
.certidao-dates-row {
  font-size: 1.1rem;
  color: #444;
  font-weight: 500;
  display: flex;
  align-items: center;
}
.certidao-dates-row p {
  margin: 0px;
}
.certidao-dates-row .dot-sep {
  color: #888;
  font-size: 1rem;
  font-weight: 400;
  margin-left: 12px;
  margin-right: 12px;
}
.certidao-dates-row .small-muted {
  margin: 0px;
  color: #888;
  font-size: 1rem;
  font-weight: 400;
  margin-left: 12px;
}

.banner-section.margin-top-128 {
  margin-top: 32px;
}

.menu_conteudo li.pesquisa {
  display: flex;
  align-items: center;
  margin-left: 8px !important;
}

.certidao-calendar-right .rich-calendar-input {
  padding: 8px;
  border: 1px solid #8c8c8c;
  border-radius: 4px;
}

.col-center-20 {
  text-align: center;
  width: 20px;
}

.certidao-dates-li {
  display: flex !important;
  align-items: center;
  gap: 8px;
}

.alvara-loading .modal-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 32px 24px;
  gap: 16px;
}
.skeleton-image {
  width: 120px;
  height: 80px;
  background: #e3e3e3;
  border-radius: 8px;
  margin-bottom: 12px;
  animation: skeleton-shimmer 1.2s linear infinite;
}
.skeleton-title {
  width: 60%;
  height: 28px;
  background: #e3e3e3;
  border-radius: 6px;
  margin-bottom: 8px;
  animation: skeleton-shimmer 1.2s linear infinite;
}
.skeleton-text {
  width: 80%;
  height: 18px;
  background: #e3e3e3;
  border-radius: 6px;
  margin-bottom: 8px;
  animation: skeleton-shimmer 1.2s linear infinite;
}
.skeleton-grid {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 12px;
}
.skeleton-row {
  width: 90%;
  height: 16px;
  background: #e3e3e3;
  border-radius: 6px;
  animation: skeleton-shimmer 1.2s linear infinite;
}
.skeleton-buttons {
  width: 60%;
  height: 36px;
  background: #e3e3e3;
  border-radius: 8px;
  margin-top: 16px;
  animation: skeleton-shimmer 1.2s linear infinite;
}

@keyframes skeleton-shimmer {
  0% {
    background-position: -200px 0;
  }
  100% {
    background-position: 200px 0;
  }
}
.skeleton-image,
.skeleton-title,
.skeleton-text,
.skeleton-row,
.skeleton-buttons {
  background: linear-gradient(90deg, #e3e3e3 25%, #f5f5f5 50%, #e3e3e3 75%);
  background-size: 400px 100%;
}

.rich-table-cell {
  font-family: 'DIN Next', sans-serif !important;
}

.rich-table-subheader {
  background-color: #ffffff !important;
  height: 30px;
}

.rich-table-footercell {
  background-color: #ffffff !important;
}

.rich-table-subheadercell {
  padding: 14px !important;
}

.rich-table-subheader,
.rich-table-subheadercell,
.rich-table-sortable-header {
  font-family: 'DIN Next', sans-serif !important;
  font-weight: 600 !important;
}

/* Estilos específicos do AgDAM */
.results-section {
  margin-top: 40px;
  margin-bottom: 60px;
}

.results-card {
  background: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #e9ecef;
}

.results-title {
  color: #2c3e50;
  font-size: 24px;
  margin-bottom: 25px;
  font-weight: 600;
  text-align: center;
}

/* Tabela moderna */
.tabela-modern {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 8px;
  overflow: hidden;
}

.tabela-header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  font-weight: 600;
  padding: 15px;
  text-align: left;
}

.tabela-modern td {
  padding: 15px;
  border-bottom: 1px solid #e9ecef;
  vertical-align: top;
}

.impar {
  background-color: #f8f9fa;
}

.par {
  background-color: white;
}

/* Informações da tabela */
.tributo-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.tributo-nome {
  font-weight: 600;
  color: #2c3e50;
}

.tributo-numero {
  font-size: 12px;
  color: #6c757d;
  background: #f8f9fa;
  padding: 3px 8px;
  border-radius: 4px;
  display: inline-block;
}

.datas-info,
.valores-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.data-item,
.valor-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.data-label,
.valor-label {
  font-size: 12px;
  color: #6c757d;
  min-width: 80px;
}

.valor-total {
  font-weight: 600;
  color: #28a745;
}

/* Badges de status */
.status-container {
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: flex-start;
}

.status-badge {
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.status-recobrada {
  background-color: #fff3cd;
  color: #856404;
  border: 1px solid #ffeaa7;
}

.status-ativada {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.status-cancelada {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.status-parcelado {
  background-color: #cce5ff;
  color: #004085;
  border: 1px solid #b8daff;
}

.status-isento {
  background-color: #e2e3e5;
  color: #383d41;
  border: 1px solid #d6d8db;
}

.status-prescrito {
  background-color: #d1ecf1;
  color: #0c5460;
  border: 1px solid #bee5eb;
}

/* Ações */
.acoes-container {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.acao-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: #f8f9fa;
  border-radius: 6px;
  color: #495057;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid #dee2e6;
}

.acao-link:hover {
  background: #e9ecef;
  transform: translateY(-2px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.acao-link i {
  font-size: 16px;
}

/* Estado vazio */
.empty-state {
  text-align: center;
  padding: 60px 20px;
  color: #6c757d;
}

.empty-state h3 {
  margin: 20px 0 10px;
  color: #495057;
}

/* Form Select */
.form-select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  font-size: 16px;
  color: #495057;
  background-color: white;
  transition: border-color 0.3s ease;
  box-sizing: border-box;
}

.form-select:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

/* Responsividade */
@media (max-width: 1024px) {
  .tabela-modern {
    display: block;
    overflow-x: auto;
  }

  .datas-info,
  .valores-info {
    min-width: 150px;
  }
}

@media (max-width: 768px) {
  .main-content.login-container {
    flex-direction: column;
  }

  .info-section,
  .login-card {
    width: 100% !important;
    margin-bottom: 30px;
  }

  .results-card {
    padding: 15px;
  }

  .acoes-container {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

/* === NOVO LAYOUT AGDAM === */
.page-shell {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 64px;
  box-sizing: border-box;
}

.hero {
  background: linear-gradient(120deg, #f4e9e5 0%, #ffffff 100%);
  border: 1px solid #f0e3de;
  border-radius: 16px;
  padding: 28px 32px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.05);
}

.hero-text {
  flex: 1;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  color: #8c6f63;
  margin: 0 0 6px 0;
  font-weight: 700;
}

.hero-title {
  margin: 0;
  font-size: 32px;
  color: #231815;
  font-weight: 700;
}

.lede {
  margin: 8px 0 14px;
  color: #5c4a43;
  font-size: 16px;
}

.hero-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.tag {
  background: #fff;
  color: #5a2318;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid #ebd9d3;
  font-size: 12px;
  font-weight: 600;
}

.hero-meta {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  min-width: 220px;
  align-self: stretch;
}

.meta-block {
  background: #fff;
  border: 1px solid #f0e3de;
  border-radius: 12px;
  padding: 12px 14px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.04);
}

.meta-block.subtle {
  background: #fdf7f4;
}

.meta-label {
  display: block;
  color: #8c6f63;
  font-size: 12px;
  margin-bottom: 4px;
  font-weight: 600;
}

.meta-value {
  color: #231815;
  font-weight: 600;
}

.content-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
  margin: 28px 0;
}

.surface-card {
  background: #ffffff;
  border: 1px solid #ececec;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.06);
  box-sizing: border-box;
}

.surface-muted {
  background: #fdf7f4;
  border-color: #f0e3de;
}

.surface-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}

.surface-title {
  margin: 2px 0 6px;
  color: #231815;
  font-size: 22px;
  font-weight: 700;
}

.helper-text {
  margin: 0;
  color: #6f5a52;
  font-size: 14px;
}

.helper-text.subtle {
  color: #8a746b;
}

.helper-chip {
  background: #5a2318;
  color: #fff;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.helper-chip.neutral {
  background: #f3e8e3;
  color: #5a2318;
}

.filters-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 12px 18px;
}

.field-filled {
  border-color: #e4d5cf;
  border-radius: 12px;
  padding: 12px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field-filled:focus {
  border-color: #5a2318;
  box-shadow: 0 0 0 3px rgba(90, 35, 24, 0.15);
  outline: none;
}

.messages-container.stacked {
  margin: 4px 0;
}

.action-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(90, 35, 24, 0.28);
}

.btn-elevated {
  max-width: 260px;
}

.btn-ghost {
  border-radius: 10px;
  border: 1px solid #d7c7c0;
  color: #5a2318;
  background: #fff;
  padding: 8px 12px;
}

.action-buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.tip-list {
  margin: 12px 0;
  padding-left: 18px;
  color: #5c4a43;
  line-height: 1.6;
}

.pill-notice {
  display: inline-block;
  padding: 8px 12px;
  background: #f0e3de;
  color: #5a2318;
  border-radius: 12px;
  font-weight: 600;
  font-size: 13px;
}

.results-shell {
  margin-top: 20px;
}

.results-card.modern {
  border-radius: 16px;
  padding: 20px 22px;
  border: 1px solid #ececec;
  background: #fff;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.05);
}

.result-table .rich-table-subheadercell,
.result-table .rich-table-subheader {
  background: #fdf7f4 !important;
  color: #4a332c !important;
}

.result-table td {
  border-bottom: 1px solid #f1e7e2;
  padding: 12px 10px !important;
}

.result-table .impar {
  background: #fdfaf8;
}

.result-table .par {
  background: #ffffff;
}

.results-card .empty-state {
  border: 1px dashed #e0d2cb;
  background: #fdf7f4;
  border-radius: 14px;
  padding: 18px;
  display: flex;
  gap: 12px;
  align-items: center;
  color: #5c4a43;
  margin-top: 10px;
  text-align: left;
}

.empty-icon {
  font-size: 20px;
}

.empty-title {
  margin: 0 0 4px;
  color: #231815;
  font-weight: 700;
}

.empty-text {
  margin: 0;
  color: #6f5a52;
}

@media (max-width: 960px) {
  .content-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    flex-direction: column;
  }
}
