@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
*{
    font-family: 'poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
    background-color: rgb(255, 255, 255);
}

section {
    padding: 28px 8%;
}

.section_title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #000;
  text-align: center;
  position: relative;
  display: inline-block;
}

.section_title::after {
  content: "";
  position: absolute;
  left: 49%;
  transform: translateX(-50%);
  bottom: -10px; /* distância abaixo do texto */
  width: 120%;   /* largura da linha */
  height: 4px;   /* espessura da linha */
  background: linear-gradient(to right, transparent, #ed1d24, transparent);
  border-radius: 50%; /* deixa suave nas pontas */
}



.section_subtitle{
  margin-top: 20px;
    font-size: 1rem;
}

@media screen and (max-width: 1170px) {
  .section_title::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -8px; /* pode reduzir um pouco a distância para mobile */
    width: min(110%, 100%); /* nunca ultrapassa o container */
    max-width: 100%;         /* segurança extra */
    height: 4px;
    background: linear-gradient(to right, transparent, #ed1d24, transparent);
    border-radius: 50%;
  }
}
