.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    justify-content: center;
    align-items: center;
 }

 .modal-content {
    background: #ffffff;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    animation: fadeIn 0.3s ease-in-out;
 }

 .modal-title {
    font-size: 24px;
    font-weight: bold;
    color: #006c63;
    margin-bottom: 10px;
 }

 .modal-text {
    font-size: 16px;
    color: #333333;
    margin-bottom: 20px;
 }

 .modal-link {
    color: #006c63;
    font-weight: bold;
    text-decoration: none;
 }

 .modal-close {
   position: absolute;
   top: 10px;
   right: 15px;
   font-size: 24px;
   font-weight: bold;
   color: #333;
   cursor: pointer;
   transition: color 0.2s;
}

.modal-close:hover {
   color: #006c63; /* Color acorde al diseño */
}

 @keyframes fadeIn {
    from {
       opacity: 0;
       transform: scale(0.8);
    }

    to {
       opacity: 1;
       transform: scale(1);
    }
 }