* Estilo base de la X */
.cerrar {
    display: inline-block; /* Imprescindible para que pueda girar */
    text-decoration: none;
    color: #444; 
    transition: transform 0.4s ease; /* Velocidad del giro */
    font-weight: bold;
}

/* Efecto al pasar el ratón */
.cerrar:hover {
    transform: rotate(90deg); /* Gira 90 grados */
    color: #ff4d4d;          /* Opcional: cambia a un tono rojo al tocarla */
}

    body {
      margin: 0;
      font-family: 'Open Sans', sans-serif;
      background: #c8c8c8;
    }

    /* Modal */
    .modal {
      position: fixed;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 90%;
      max-width: 1000px;
      background: white;
      box-shadow: 0 8px 16px rgba(0,0,0,0.3);
      border-radius: 10px;
      overflow: hidden;
      z-index: 9999;
    }

    /* Área superior con la X */
    .modal-header {
      position: relative;
      height: 18px;
      background: #cfe2f3; /* Azul claro */
      text-align: right;
      padding: 5px;
      color: white;
    }

    .modal-content {
      width: 100%;
      padding: 0;
      position: relative;
    }

    .modal-content img {
      width: 100%;
      height: auto;
      display: block;
    }


/* Estilo para los enlaces invisibles */
.image-links {
  position: absolute;
  background: transparent; /* Fondo transparente por defecto */
  text-decoration: none; /* Sin subrayado */
  cursor: pointer; /* Cambia el cursor al pasar por encima */
  z-index: 10;
  transition: background 0.3s ease;
}

.image-links:hover {
  background: rgba(128, 128, 128, 0.1); /* Fondo más oscuro al hacer hover */
}
    /* Enlace 1 - www.atace.es */
    .image-links.first {
    top: 87%;  /* Ajusta la posición vertical */
    left: 43%; /* Ajusta la posición horizontal */
    width: 179px; /* Ajusta el tamaño */
    height: 30px; /* Ajusta el tamaño */
    }

/* Enlace 2 - Estrella Michelin*/
    .image-links.second {
    top: 23%;  /* Ajusta la posición vertical */
    left: 25%; /* Ajusta la posición horizontal */
    width: 510px; /* Ajusta el tamaño */
    height: 120px; /* Ajusta el tamaño */
    }

   
