@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');


.MENUDENAVEGACION ul {
    display: flex;
    justify-content:center;
    gap: 70px;
    list-style: none;
    text-align: center;
    margin: 3%;
    color: rgb(247, 43, 114);
    font-size: large;
}

.MENUDENAVEGACION a {
    text-decoration: none;
    color: rgb(247, 43, 114);
    font-weight: 350;
    font-size: large;
    transition: transform 0.3s ease;
}

.MENUDENAVEGACION a:hover {
  transform: scale(1.03);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  font-weight: 500;
}

li {
    text-decoration: none;
}

.LINKS ul {
    display: flex;
    justify-content:center;
    gap: 40px;
    list-style: none;
    text-align: center;
    margin-left: 5px;
    margin-right: 5px;
    flex-wrap: wrap;

}

.LINKS a {
    font-size: 20px;
  display: flex;
  justify-content: center;
  align-items: center; /* centra verticalmente */
  width: 230px;
  height: 100px;
  background-color: rgb(249, 200, 217);
  color: rgb(247, 43, 114);
  font-weight: 500;
  text-decoration: none;
  border-radius: 12px;
  transition: transform 0.3s ease, background-color 0.3s ease;
  margin-left: 0px;
  gap: 10px;
  flex: 1;
  max-width: 230px;
  min-height: 0;
}

.LINKS a:hover {
  transform: scale(1.05);
  background-color: rgb(247, 175, 200);     /* cambio suave */
  text-decoration: underline;
  text-decoration-thickness: 1px;
  font-weight: 600;
}

body { 
    background-color: rgb(255, 255, 255);
    font-family: "Outfit";
    font-weight: 200;
    margin: 5%;
}

h1 {
    color: rgb(0, 0, 0);
    font-size: 5rem;
    margin-top: 2%;
    margin-bottom: 2%;
    text-align: center;
}


footer {
    color: rgb(100, 88, 92) ;
}

.boton-link a {
  display: block;                /* para que ocupe caja */
  background-color:rgb(247, 43, 114);      /* Azul tipo link */
  color: rgb(255, 255, 255);                   /* Texto blanco */
  border: none;                   /* Sin borde */
  border-radius: 8px;             /* Bordes redondeados */
  padding: 20px 30px;             /* Espaciado interno */
  font-size: 16px;                /* Tamaño del texto */
  font-weight: 500;
  cursor: pointer;                /* Cambia el cursor al pasar */
  transition: transform 0.3s ease;
  text-decoration: none;
  justify-content: center;
}

.boton-link a:hover {
    transform: scale(1.05);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Sombra sutil */
}

.REGRESAR a {
    text-decoration: none;
    color: rgb(247, 43, 114);
    font-weight: 350;
    font-size: large;
    transition: transform 0.3s ease;
}

.REGRESAR a:hover {
  transform: scale(1.03);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  font-weight: 500;
}

.year {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding: 40px;
  justify-content: center;
}

.columna {
  background-color: rgb(251, 219, 230);
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.columna h2 {
  color: #f72b72;
  font-weight: 500;
  font-size: 70px;
  margin-bottom: 15px;
  margin-top: 5px;
}

.columna ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.columna li {
  margin-bottom: 10px;
  font-size: 14px;
  color: #333;
}


.contenedor {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 60px;
  flex-wrap: wrap;
  width: 100%;
}


.contenedor img {
  width: 100%;
  max-width: 350px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  height: auto;
}

.texto {
  flex: 1;
  min-width: 0;
  width: 100%;
  max-width: 600px;
  margin-left: 100px;
}


h3 {
  font-size: 50px;
  margin-top: 20px;
  font-weight: 200;
  text-align: center;
  margin-bottom: 5px;
}

.linea {
  height: 2px;
  width: 100%;
  max-width: 630px;
  background-color: rgb(247, 43, 114);
  margin: 20px auto;
  min-width: 0;
}

h4 {
   font-size: 30px;
  margin-top: 20px;
  font-weight: 100;
}

h5 {
   font-size: 20px;
  margin-top: 10px;
  font-weight: 100;
  text-align: center;
}

