.botonPatrocinio {
    border-radius: .25rem;
    text-transform: uppercase;
    padding-left: 10px;
    padding-right: 10px;
    color: #fff;
    -webkit-clip-path: polygon(0 0,0 0,100% 0,100% 0,100% calc(100% - 15px),calc(100% - 15px) 100%,15px 100%,0 100%);
    clip-path: polygon(0 0,0 0,100% 0,100% 0,100% calc(100% - 15px),calc(100% - 15px) 100%,15px 100%,0 100%);
    height: 30px;
    font-size: 0.6rem;
    letter-spacing: 1px;
    transition: .2s .1s;
    background-image: linear-gradient(90deg,#1c1c1c,#73ff59);
    border: 0 solid;
}
  
.botonPatrocinio:hover {
    cursor: pointer;
    transition: all .3s ease-in;
    padding-right: 25px;
    padding-left: 25px;
}

.modalPatrocinio {
    display: none; /* Oculto por defecto */
    position: fixed;
    z-index: 999;
    top: 0;
    width: 100%;
    height: 100%;
    overflow-y: scroll;
    background-color: rgba(0,0,0,0.5); /* Fondo oscuro */
  }

  /* Contenedor del contenido del modal */
  .modalPatrocinio-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 30px;
    border-radius: 10px;
    max-width: 650px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    text-align: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }

  .modalPatrocinio-content ul {
    margin-left: 20px;
    margin-bottom: 20px;
  }

  .modalPatrocinio-content ul li {
    margin-bottom: 15px;
  }

  .modalPatrocinio-contact-info {
    background-color: #f9f9f9;
    border-left: 4px solid #73ff59;
    padding: 15px;
    font-weight: bold;
    border-radius: 5px;
  }

  .botonCerrarModalPatrocinio{
    border-radius: 8px;
    padding: 4px 16px;
    font-size: 10px;
    cursor: pointer;
    background-color: white;
  }