/* =========================================================
   PARÓQUIA DE NOSSA SENHORA DO AMPARO
   Base global V1
   ========================================================= */

/* Base tipográfica */
html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #fff;
  color: #17243a;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

/* Títulos editoriais do site */
h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
}

/* Elementos funcionais permanecem sans-serif */
button,
input,
select,
textarea {
  font-family: Arial, Helvetica, sans-serif;
}

/* Links herdam a tipografia do contexto */
a {
  color: inherit;
}

/* Modelo de caixa previsível */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Contentor global comum */
.container {
  width: min(1160px, calc(100% - 40px));
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 28px, 1160px);
  }
}
