@media (max-width: 900px) {
  .social-section {
    flex-direction: column;
    gap: 18px;
    padding: 18px 4px;
    max-width: 100vw;
  }
  .social-right {
    padding-left: 0;
    align-items: center;
    text-align: center;
  }
  .social-video {
    max-width: 100vw;
  }
}
/* Sección redes sociales moderna */
.social-section {
  max-width: 1200px;
  margin: 64px auto 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
 
  
  padding: 48px 32px;
  align-items: stretch;
}
.social-left {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.social-video {
  width: 100%;
  max-width: 480px;
  aspect-ratio: 16/9;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(10,35,66,0.10);
}
.social-right {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-left: 24px;
}
.social-title {
  font-size: 2rem;
  font-weight: 800;
  color: #013068;
  margin-bottom: 18px;
  font-family: 'Montserrat',sans-serif;
}
.social-desc {
  font-size: 0.96rem;
  color: #444;
  margin-bottom: 24px;
}
.social-links {
  display: flex;
  gap: 24px;
  margin-top: 12px;
}
.social-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.1rem;
  color: #013068;
  text-decoration: none;
  font-weight: 700;
  transition: color 0.2s;
}
.social-link img {
  width: 32px;
  height: 32px;
  object-fit: cover;
  border-radius: 50%;
  filter: brightness(0.9) invert(0.7);
  transition: filter 0.2s;
}
.social-link:hover {
  color: #0b76b0;
}
.social-link:hover img {
  filter: brightness(1.2) invert(0);
}
@media (max-width: 900px) {
  .social-section {
    flex-direction: column;
    gap: 24px;
    padding: 32px 12px;
  }
  .social-right {
    padding-left: 0;
    align-items: center;
    text-align: center;
  }
}
@media (max-width: 700px) {
  .social-icon {
    width: 24px;
    height: 25px;
    display: inline-block;
    object-fit: contain;
    margin-right: 8px;
    vertical-align: middle;
  }
}

