<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">











ul {
  padding: 0;
  list-style: none;
}


/* Estilos para la secciÃ³n de contacto */
.contact-section {
  padding: 20px;
  background-color: #080300; /* Fondo gris claro */
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Sombra ligera */
}

/* Estilos del mapa */
.map-container iframe {
  border: 2px solid #b41a1a; /* Borde alrededor del mapa */
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Sombra del mapa */
  margin-bottom: 20px;
}

/* Estilos para la lista de redes sociales */
.social-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  list-style: none;
  padding: 0;
  margin: 0;
}

.social-links li {
  text-align: center;
  margin: 10px;
}

.social-links img {
  width: 50px;
  height: 50px;
  margin-bottom: 5px;
  transition: transform 0.3s ease;
}

.social-links img:hover {
  transform: scale(1.3); /* Efecto de agrandar el Ã­cono */
}

.social-links p {
  font-size: 14px;
  color: #ffffff;
  margin: 0;
}






#contact h2 {
  text-align: center;
}

#contact ul {
  display: flex;
  justify-content: space-evenly;
}

#contact a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

#contact p {
  text-align: center;
}

#contact img {
  width: 54px;
  height: 54px;
  align-items: center;
}


@media (min-width: 1024px) {
  section {
    max-width: 1366px;
    align-self: center;
  }

  p {
    font-size: 12pt;
  }

  h2 {
    font-size: 36px;
  }


  
  

  #hero {
    flex-direction: row;
  }

  .hero-text + .hero-image {
    margin-left: 5rem;
  }

  #portfolio ul {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
  }

  #portfolio li {
    max-width: 30%;
    margin: 1.6%;
  }

  #contact {
    width: 100%;
  }

  #contact ul {
    max-width: 512px;
    align-items: center;
    justify-content: space-evenly;
    margin: auto;
  }
}

.text-gradient {
  background: linear-gradient(270deg, #eef4ed,rgb(255, 144, 76));
  background-size: 300% 300%;

  -webkit-animation: AnimationName 7s ease infinite;
  animation: AnimationName 7s ease infinite;

  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@-webkit-keyframes AnimationName {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@keyframes AnimationName {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.scroll-header {
  background-color: #13315c;
}
</pre></body></html>