.contacto_container p{   
  text-align: center;
    font-family: 'Arial';
    font-size: 20px;
    color: white;
    line-height: 1.4;
  

}

.contacto_container {
    background-image: linear-gradient(to bottom right, #81c2de, #4f92ac);
    padding: 60px 40px 60px 40px;
    text-align: center;
    color: #0a4e3e;
    font-family: 'Arial';
    font-size: 18px;
    line-height: 1.4;   
    max-width: inherit;
    display: flex;
    flex-wrap: wrap;
     justify-content: center; /* Centrado por defecto */
    align-items: flex-start;
    gap: 2rem;

}

@media (max-width: 768px) {
    .contacto_container {
        flex-direction: column; /* Apila los elementos */
        padding: 40px 20px;
        align-items: center; /* Centra horizontalmente */
    }

    .contacto_info {
        margin: 0; /* Sin márgenes laterales en móvil */
        text-align: center;
    }
}

#contacto {
    background-color: #f8f9fa;
    padding: 40px;
    text-align: center;
}

#contacto h2 {
    color: #333;
    margin-bottom: 10px;
     align-items: center;
}

#contacto a {
    color: #0077b5;
    text-decoration: none;
    font-weight: bold;
     align-items: center;
}

#contacto a:hover {
    text-decoration: underline;
}


.redes-sociales {
  margin-top: 15px;
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.redes-sociales p {
  color: white;
  font-family: 'Arial', sans-serif;
  margin-right: 15px;
  font-size: 1rem;
}

.icon-redes {
  width: 40px;
  height: 40px;
  transition: transform 0.3s ease;
}

.icon-redes:hover {
  transform: scale(1.2);
  cursor: pointer;
}


@keyframes slideGradient {
  0% {
    left: -100%;
  }
  50% {
    left: 0;
  }
  100% {
    left: 100%;
  }
}


.wrapper {
  display: flex;
  justify-content: center; /* centra horizontalmente los hijos */
  align-items: center;     /* centra verticalmente */
  transition: all 0.6s ease-out;
  gap: 1rem;               /* separa los íconos entre sí */
}

.wrapper__links {
  display: flex;
  align-items: center;
  gap: 1rem;               /* espacio entre los íconos si hay más de uno */
  width: auto;              /* que no limite el centrado */
}

/* Colores por red social */
.social-link--linkedin { color: #2d76b0; }
.social-link--instagram { color: #9a2970; }
.social-link--dribbble { color: #9a18bb; }
.social-link--phone { color: #12a84c; }

/* Tamaño de los SVG */
.social-link .social-svg {
  width: 4.8rem;
  height: 4.8rem;
}

/* Partes del SVG */
.social-link .social-group__icon { 
  fill: #191308; 
  transition: all 0.2s; 
}

.social-link .social-group__inner-circle { 
  fill: transparent; 
  transition: all 0.2s; 
}

.social-link .social-group__outline { 
  stroke: #191308; 
  transform-origin: 50% 50%; 
  transition: all 0.2s; 
}

/* Hover / Focus */
.social-link:hover .social-group__icon { 
  fill: #FFFBFA; 
  transition: all 0.45s; 
}

.social-link:hover .social-group__inner-circle { 
  fill: currentColor; 
  transition: all 0.45s; 
}

.social-link--instagram:hover .social-group__inner-circle { 
  fill: url(#simpleInsta) !important; 
}

.social-link:hover .social-group__outline { 
  stroke: currentColor; 
  transform: scale(1.1); 
  transition: all 0.45s; 
}
