body {
    background-color: #ffffff;
    font-family: 'Rubik', sans-serif;
    font-weight: 400;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    width: 100%;
}

/* Contenedor principal del acordeón */
.qr-section {
    background-color: #ffffff;
    margin: 0 auto;
    padding: 20px;
    width: 100%;
    max-width: 1600px; /* Ajusta según tu preferencia */
    box-sizing: border-box;
}

/* Botón del acordeón */
.accordion-button {
    background-color: white;
    color: #8c9160;
    border: 2px solid #8c9160;
    transition: background-color 0.3s, color 0.3s;
    box-shadow: none;
    text-align: left;
    padding: 1.2rem;
    font-size: 1.2rem;
    width: 100%;
    outline: none; /* Elimina el borde azul */
}

/* Quitar el borde azul también al hacer clic o enfocar */
.accordion-button:focus {
    box-shadow: none;
    outline: none;
}

/* Hover */
.accordion-button:hover {
    background-color: #a1a15f;
    color: white;
}

/* Cuando está expandido */
.accordion-button:not(.collapsed) {
    background-color: #8c9160;
    color: white;
    box-shadow: none;
}

.letra{
        font-weight: 700; /* o puedes usar 'bold' */
}

/* Item */
.accordion-item {
    border: none;
    border-top: 2px solid #8c9160;
    margin-bottom: 0;
}

/* Cuerpo del acordeón */
.accordion-body {
    background-color: #e2dac5;
    color: #8c9160;
    border-top: 1px solid #8c9160;
    padding: 30px;
    font-size: 1.1rem;
    margin-bottom: 0;
}

.boton {
    background-color: #8c9160; /* Verde musgo */
    color: #fff; /* Texto blanco */
    border: 2px solid #8c9160;
    font-size: 1.2rem;
    padding: 6px 50px;
    display: inline-block;
    text-align: center;
    transition: background-color 0.3s, color 0.3s;
}

.boton:hover {
    background-color: #fff; /* Fondo blanco */
    color: #8c9160; /* Texto verde musgo */
    border-color: #8c9160;
}


/* Footer */
footer {
    background-color: #8c9160;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    margin-top: auto;
}
