/* ----------------------- RESET E ESTILOS BÁSICOS -------------- */
* {
  max-width: unset;
  box-sizing: border-box;
}

body {
  padding: 0;
  margin: 0;
  font-family: 'Georgia', 'Times New Roman', Times, serif;
}

.heading-primary,
.news-title,
.text-large-bold,
.text-subtitle {
  font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif;
}

.text-regular,
.text-comment,
.text-small,
.text-medium-bold,
.text-block {
  font-family: 'Georgia', 'Times New Roman', Times, serif;
}

/* Mantenho o resto do seu CSS igual */

/* ----------------------- LAYOUT E CONTAINERS -------------- */
.section {
  padding: 0;
  padding-inline: 2% !important;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 50px !important;
  height: auto !important;
  background-repeat: no-repeat;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  min-height: 50px !important;
  width: 100%;
  background-repeat: no-repeat;
}

.container > * {
  max-width: 100%;
}

/* ----------------------- GRID SYSTEM -------------- */
.grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 10px;
  width: 100%;
}

.grid-cell {
  padding: 10px;
  display: flex;
  align-items: stretch;
  flex-direction: column;
}

/* Colunas para desktop */
.col-1 { grid-column: span 1; }
.col-2 { grid-column: span 2; }
.col-3 { grid-column: span 3; }
.col-4 { grid-column: span 4; }
.col-5 { grid-column: span 5; }
.col-6 { grid-column: span 6; }
.col-7 { grid-column: span 7; }
.col-8 { grid-column: span 8; }
.col-9 { grid-column: span 9; }
.col-10 { grid-column: span 10; }
.col-11 { grid-column: span 11; }
.col-12 { grid-column: span 12; }

/* ----------------------- TIPOGRAFIA -------------- */
.text-block {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding: 5px;
}

.heading-primary {
  font-size: 32px;
  text-align: left;
  margin-bottom: 5px;
  margin-top: 5px;
}

.text-regular {
  font-size: 20px;
  text-align: left;
  line-height: 23px;
  margin-bottom: 8px;
  margin-top: 8px;
}

.text-comment {
  font-size: 23px;
  text-align: center;
  line-height: 23px;
  margin-bottom: 22px;
  margin-top: 5px;
  color: #7A7A7A;
}

.text-small {
  font-size: 17px;
  text-align: center;
  line-height: 19px;
  margin-bottom: 5px;
}

.text-medium-bold {
  font-size: 20px;
  text-align: left;
  line-height: 23px;
  font-weight: 600;
  margin-bottom: 5px;
}

.text-large-bold {
  font-size: 23px;
  text-align: left;
  margin-top: 0;
  margin-bottom: 5px;
}

.text-subtitle {
  font-size: 20px;
  font-weight: 600;
  text-align: left;
  margin-bottom: -8px;
  line-height: 23px;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

/* ----------------------- ELEMENTOS -------------- */
.horizontal-line {
  border: none;
  height: 2px;
  background-color: rgb(165, 165, 165);
  margin: 10px 0;
  width: 100%;
}

.icon {
  width: 30px;
  height: 30px;
}

.icon svg {
  height: 100%;
  width: 100%;
}

.icon-small {
  height: 27px;
  width: 27px;
}

.image {
  width: 100%;
  object-fit: cover;
  height: auto;
  margin-bottom: -5px;
  margin-top: 20px;
}

/* ----------------------- COMPONENTES ESPECÍFICOS -------------- */
.header {
  padding-top: 15px;
  padding-bottom: 5px;
}

.header-container {
  padding-bottom: 0;
  padding-top: 0;
}

.header-grid {
  padding: 0;
  align-items: center;
}

.header-left {
  flex-direction: row;
  row-gap: 5px;
  column-gap: 15px;
  align-items: center;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 5px;
}

.header-right {
  align-items: flex-end;
  justify-content: center;
  padding-top: 0;
  padding-bottom: 0;
}

.news-title {
  font-family: 'Times', serif;
  font-size: 30px;
  font-weight: normal;
  margin: 0;
  padding-left: 10px;
}

.content-container {
  padding-left: 140px;
  padding-right: 140px;
  row-gap: 5px;
  column-gap: 5px;
}

.content-section {
  padding-top: 0;
}

.button {
  background-color: rgb(51, 208, 83);
  font-family: Poppins;
  font-weight: 600;
  font-size: 21px;
  margin-top: 10px;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  color: white;
}

.breathing-button {
  background: radial-gradient(at center center, #0069ff 28%, #00f 100%);
  font-family: Poppins;
  border: none;
  color: white;
  padding: 15px 40px;
  font-size: 22px;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 3px;
  cursor: pointer;
  outline: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s;
  margin: auto;
  margin-top: 10px;
  display: block;
  width: 100%;
  text-align: center;
}

        .breathing-button:hover {
            animation: atomicat-animation-pulse 2s infinite linear;
        }

        @keyframes  atomicat-animation-pulse {
            0% {
                transform: scale(1);
                opacity: 1;
            }
            50% {
                transform: scale(1.1);
                opacity: 0.7;
            }
            100% {
                transform: scale(1);
                opacity: 1;
            }
        }

.footer {
  background-color: rgb(248, 248, 248);
  padding: 10px 0;
  margin-top: 10px;
}

.footer-text {
  color: rgb(158, 158, 158);
  margin-bottom: 5px;
}

.footer-container {
  width: 100%;
  color: rgb(158, 158, 158);
  row-gap: 5px;
  column-gap: 5px;
  padding: 10px;
}

.text-black {
  color: rgb(0, 0, 0);
  margin-bottom: 5px;
}

.image-caption {
  margin-bottom: -5px;
  margin-top: 0px;
}

/* ----------------------- MEDIA QUERIES -------------- */
@media (max-width: 992px) {
  .content-container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (max-width: 576px) {
  .content-container {
    padding-left: 0;
    padding-right: 0;
  }

  .heading-primary {
    font-size: 28px;
    text-align: center;
  }

  .content-section {
    padding-top: 0;
  }

  .header-left {
    row-gap: 5px;
    column-gap: 5px;
  }

  .header-grid {
    row-gap: 5px;
    column-gap: 5px;
  }

  .text-regular {
    font-size: 18px;
  }

  .text-comment {
    font-size: 20px;
  }

  .text-medium-bold {
    font-size: 18px;
  }

  .text-large-bold {
    font-size: 20px;
    text-align: center;
  }

  .text-subtitle {
    font-size: 18px;
  }

  .image-caption {
    margin-bottom: -5px;
  }

  .news-title {
    font-size: 28px;
  }
}
