/* Ocultar checkbox */
.modal-toggle {
    display: none;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

/* Mostrar el modal si el checkbox está marcado */
.modal-toggle:checked~.modal {
    display: flex;
}

.modal-content {
    background-color: white;
    border-radius: 10px;
    text-align: center;
    position: relative;
    max-width: 400px;
    padding: 40px 0;
}

.modal-content .fa-star {
    color: orange;
    margin-bottom: 2rem;
    font-size: 20px;
}

.close-button {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 25px;
    cursor: pointer;
    text-decoration: none;
    color: #000;
    transition: .3s all;
}

.close-button:hover {
    color: #0084d4;
}
.logo{
    border-radius: 8px;
}

.opinion-button a {
    background-color: #005e1b;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    margin-top: 1rem;
    cursor: pointer;
    font-size: 18px;
}