/* ====== RESET BÁSICO (opcional) ====== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
}

/* ====== BODY ====== */
body {
  /*display: flex; */
  justify-content: center;
  font-family: 'Roboto', sans-serif !important;
  font-size: 1em;
  width: 100%;
  margin: 0;
  padding: 0;

  /* Imagem de fundo */
  background-repeat: repeat-y;
  background-image: url('../img/background.jpg');
  background-size: cover;
}

/* CONTAINER PRINCIPAL */
.content-body {
  background-color: #ffffff;
  width: 100%;
  max-width: 1440px;
  min-height: 100vh;
  margin: 0 auto;
  padding: 2rem;
}

/* ====== INTRO ====== */
.intro {
  margin-bottom: 3rem;
}

.intro h1 {
  color: #2398DD;
  font-weight: 700;
  margin-bottom: 2rem;
  font-family: 'Roboto', sans-serif !important;
}

.intro h1::after {
  content: "";
  display: block;
  width: 100%;
  border-bottom: 4px dashed #2398DD;
  margin-bottom: 0.5rem;
}

.main_content {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
}

.main_content h2 {
  font-family: 'Ubuntu';
  color: #8945BA;
  font-size: 2em;
  margin-bottom: 1rem;
  line-height: 30px;

}

.main_content-text p {
  margin-bottom: 1rem;
  text-align: justify;
}

.main_img {
  max-width: 300px;
  height: auto;
}

.main_content-text {
  flex: 1;
}

.main_content-text p {
  margin-bottom: 1rem;
}

.txt_site {
  color: #2398DD;
  font-weight: 700;
}

.txt_sofia {
  color: #8945BA;
  font-weight: 700;
}

.txt_link {
  color: #41AADD;
  text-decoration: underline;

}

.btn-sofia-wrapper {
  display: flex;
  justify-content: flex-end;
  margin-top: 2rem;
}

.btn-sofia {
  display: inline-block;
  background: linear-gradient(135deg, #612A89, #9e54d3);
  background-size: 200% 200%;
  background-position: left center;
  color: #ffffff;
  font-weight: 600;
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  font-family: 'Ubuntu', sans-serif;
  font-size: 1rem;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
  transition: background-position 0.5s ease;
  text-decoration: none;
}

.btn-sofia:hover {
  background-position: right center;
}

.btn_icon {
  margin-left: 1rem;
}

/* Tablets (largura até 1024px) */
@media (max-width: 1024px) {
  .main_img {
    max-width: 100%;
  }

  .btn-sofia {
    font-size: 0.95rem;
    padding: 0.7rem 1.2rem;
  }
}

/* Tablets (largura até 768px) */
@media (max-width: 768px) {
  .main_content {
    flex-direction: column;
    align-items: center;
  }
}

/* Celulares (largura até 4250px) */
@media (max-width: 425px) {
  body {
    font-size: 0.95em;
  }

  .main_img {
    width: 70%;
  }

  .content-body {
    padding: 1.5rem 1rem;
  }

  .intro h1 {
    font-size: 1.4rem;
    text-align: center;
  }

  .main_content h2 {
    text-align: center;
  }
}