.section2_about {
  display: grid;
  grid-template-columns: 65% 35%;
  align-items: center;
  gap: 2em;
  padding: 4em 1.5em;
  background-color: #fdfdfd;
  z-index: 1;
  position: relative;
}

.section2_texto h2 {
  font-size: 2em;
  color: var(--primary-color);
  margin-bottom: 0.8em;
  font-weight: 700;
}

.section2_texto p {
  font-size: 1.1em;
  line-height: 1.6;
  color: #333;
  max-width: 90%;
}

.section2_instagram_button {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  margin-top: 1.5em;
  padding: 0.6em 1.2em;
  font-size: 1em;
  font-weight: 600;
  color: #002b5c;
  border: 2px solid #002b5c;
  border-radius: 8px;
  background: transparent;
  text-decoration: none;
  transition: all 0.3s ease;
}

.section2_instagram_button:hover {
  background-color: #002b5c;
  color: white;
}

.instagram_icon {
  width: 20px;
  height: 20px;
}

.section2_imagem {
  text-align: center;
}

.section2_imagem img {
  max-width: 100%;
  border-radius: 10px;
  display: block;
}

.section2_assinatura {
  display: block;
  margin-top: 0.5em;
  font-family: 'Montserrat', cursive;
  font-size: 1em;
  color: var(--primary-color);
  font-style: italic;
}

@media (max-width: 768px) {
  .section2_about {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 2em 1.5em;
  }

  .section2_imagem {
    order: -1;
    margin-bottom: 1.5em;
  }

  .section2_imagem img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    border: 2px solid #002b5c;
    object-fit: cover;
    margin: 0 auto;
  }

  .section2_texto h2 {
    font-size: 1.6em;
  }

  .section2_texto p {
    max-width: 100%;
  }
}
