.logo{
    padding-top: 50px;
    display: flex;
    justify-content: center;
}

.stroke{
    border: 1px solid red;
}

.logo img{
    width: 300px;
}

.collage{
    padding-top: 20px;
    display: flex;
    justify-content: center;
}

.collage img{
    width: 650px;
}

@media (max-width: 700px) {
  .collage img {
    width: 350px;
  }
}


.bloquetrabajos{
    background-color: #0b263a;
    padding-bottom: 100px;
}

.titulo{
    text-align: center;
    font-family: "Barlow", sans-serif;
    font-weight: 300;
    color: #4ce7fd;
    font-size: 4rem;
}


@media (max-width: 700px) {
  .titulo{
    font-size: 2rem;
  }
}

.menu{
    padding-top: 50px;
    display: flex;
    justify-content: center;
}

.menu a{
    font-family: "Barlow", sans-serif;
    font-weight: 300;
    color: aliceblue;
    font-size: 18px;
    text-decoration: none;
    background-color: #0198cf;
    padding: 8px 20px;
    margin: 0px 10px;
    cursor: pointer;
    border-bottom: 1px solid #fff700;
}

.menu a:hover{
    color: #fff700;
    background-color: #005e81;
}


.titulos h3{
    text-align: center;
    color: #fffc00;
    font-family: "Barlow", sans-serif;
    font-weight: 100;
    font-style: normal;
    font-size: 42px;
}

.lista{
    font-family: "Barlow", sans-serif;
    color: aliceblue;
    font-weight: 100;
    font-style: normal;
    font-size: 1.2rem;
}




.icono-img{
    width: 120px;
    height: auto; /* mantiene proporción */
}

.texto-principal {
    font-family: "Barlow", sans-serif;
    font-weight: 100;
    color: #4ce7fd;
    font-size: 1.5rem;
    line-height: 1.6;
    max-width: 95%;
    margin: 0 auto; /* centra el párrafo */
    padding-top: 50px;
}


/* Botones de imagen con <a> */
.img-link {
  display: block;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 2px 10px rgba(0,0,0,.08);
  transition: transform .15s ease, box-shadow .15s ease;
  cursor: pointer;
}
.img-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,.12);
}
.img-link:focus-visible {
  outline: 3px solid #0d6efd;
  outline-offset: 3px;
}

/* La imagen llena el contenedor cuadrado sin deformarse */
.img-fit {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Ajustes menores del modal (opcional) */
.modal .modal-body img {
  /* añade un pequeño borde redondeado por consistencia */
  border-radius: 8px;
}
