.header{ background-color: #bb81b7;}

.header a{color: #fff;}

.header .menu a {color: #fff;}

.header__content{border-color: #bb81b7;}


@media (max-width: 1190px){
			.header .menu a {color: #000;}
}



.social-section {
  max-width: 360px;
  margin: 60px auto;
  padding: 30px 20px;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  text-align: center;
  color: #fff;
}

.social-section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 25px;
}

.social-icon {
  width: 60px;
  height: 60px;
  font-size: 1.8rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.social-icon.instagram {
  background: radial-gradient(circle at 30% 30%, #feda75, #d62976, #962fbf);
  color: white;
}

.social-icon.facebook {
  background-color: #1877f2;
  color: white;
}

.social-icon:hover {
  transform: scale(1.15);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}