body {
  background: linear-gradient(135deg, #667eea, #764ba2);
  min-height: 100vh;
}
.card {
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}
.profile-img {
  width: 300px;
  height: 300px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid white;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}
.social-icons a {
  color: #333;
  margin: 0 10px;
  font-size: 1.5rem;
  transition: color 0.3s;
}
.social-icons a:hover {
  color: #764ba2;
  transform: scale(1.2);
}
.bordesito{
 border: 1px solid red;
}

.imagen-ajustada {
  width: 100%;
  height: 300px;
  object-fit: contain;
  display: block;
}

footer{
  cursor: default;
}

footer a:hover {
  transform: scale(1.2);
  transition: 0.3s;
}


.cinta {
  background: linear-gradient(135deg, #8e44ad, #3498db); /* morado → azul */
  box-shadow: 3px 6px 25px rgba(0,0,0,0.4);
  border-radius: 0 25px 25px 0;
  position: fixed;
  top: 20%;
  left: 0;
  transform: translateY(-50%);
  width: 25%;       /* desktop */
  height: 10%;      /* desktop */
  font-weight: 600;
  font-size: 26px;
  cursor: pointer;
  z-index: 1000;
  color: #fff;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover: se desplaza ligeramente y resalta */
.cinta:hover {
  transform: translateY(-50%) translateX(10px);
  box-shadow: 5px 10px 30px rgba(0,0,0,0.5);
}
.modal-body img {
  border-radius: 50px; /* ajusta el valor a tu gusto */
}


/* Ajustes para pantallas medianas */
@media (max-width: 992px) {
  .cinta{
    font-size: 16px;
  }
}

/* Ajustes para pantallas pequeñas */
@media (max-width: 576px) {
  .cinta{
    width: 35%;
  }
}
