 .ff-montserrat{
    font-family: "Montserrat", "Nunito", sans-serif;
}
.pointer{
    cursor: pointer;
}
.preguntas-titulo{
    font-size: 35px;
    text-align: center;
    line-height: 1.1;
}
.pregunta-contenedor{
    width: 100%;
    max-width: 900px;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1);
    border-radius: 2px;
    transition: all 0.3s ease-out;
}
.pregunta-contenedor:hover{
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0);
    transition: all 0.15s ease-in;
}
.pregunta-contenedor-pregunta {
    width: calc(100% - 40px);
    font-size: 18px;
}
.toggle-button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #A0956B;
    border: none;
    color: white;
    font-size: 18px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.1s ease-in-out;
}
.toggle-button:hover {
    background-color: #8B8458;
}
.toggle-button.collapsed::before {
    content: '+';
}
.toggle-button:not(.collapsed)::before {
    content: '−';
}
.toggle-button:not(.collapsed) {
    background-color: #adadad;
    color: white;
}

@media (max-width: 768px) {
    .preguntas-titulo{
        font-size: 25px;
        text-align: center;
        line-height: 1.1;
    }
    .pregunta-contenedor-pregunta{
        font-size: 14px;
        width: calc(100% - 30px);
    }
    .toggle-button {
        width: 30px;
        height: 30px;
    }
}
.contenedor-img-preguntas-principal{
    overflow: hidden;
    position: relative;
}
.titulo-pagina{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 1;
    color: white;
    font-size: 5vw;
    font-weight: bold;
    text-shadow: 0px 3px 6px #00000029;
    font-family: "Montserrat", "Nunito", sans-serif;
}
.img-preguntas-principal{
    width: 100%;
    height: auto;
    animation: zoomInOut 7s ease-out;
}
.transition-xl{
    transition: all 5s ease-in-out;
}
@keyframes zoomInOut {
    0% { transform: scale(1.3); }
    100% { transform: scale(1); }
}
