@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;700;900&display=swap");

body {
  font-family: "Montserrat", sans-serif;
  background-color: #000000;
  color: #ffffff;
  scroll-behavior: smooth;
}

.section-title {
  color: #9e3885;
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 30px;
  font-weight: 700;
  font-size: 2rem;
  text-transform: uppercase;
}

.section-title:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: #9e3885;
}

.social-fixed {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 100;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  transition: all 0.3s ease;
  border: 1px solid #9e3885;
}

.social-icon:hover {
  background-color: #9e3885;
  transform: scale(1.1);
}

/* Animação suave */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
    }

    to {
        transform: scale(1);
    }
}

@media (max-width: 640px) {
    .section-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    /* Estilo do link */
     a {
        cursor: pointer;
        text-decoration: underline;
        color: #2c7a7b;
    }
}
