.acordeon-pueblos {
    max-width: 800px;
    margin: 0 auto;
    border-top: 1px solid #ddd;
}

    .acordeon-pueblos .item {
        border-bottom: 1px solid #ddd;
        padding: 15px 0;
    }

.pregunta {
    width: 100%;
    background: none;
    border: none;
    font-size: 1.8rem;
    font-weight: 200;
    color: #333;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s;
}

    .pregunta:hover {
        color: #e67e22;
    }

.respuesta {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.3s ease;
    opacity: 0;
    font-size: 1.5rem;
    font-weight: 550;
}

.item.activo .respuesta {
    max-height: 200px;
    opacity: 1;
    margin-top: 10px;
}

.flecha {
    transition: transform 0.3s;
    color: #e67e22;
    font-weight: bold;
}

.item.activo .flecha {
    transform: rotate(180deg);
}

.boton-link {
    color: #E67E22;
}

    .boton-link:hover {
        background: #fad6b6;
    }

/* Responsive */
@media (max-width: 600px) {
    .pregunta {
        font-size: 1.8rem;
    }
}
